function fncSubmit() {
var element = $(this);
var I = element.attr("id");
var info = 'id=' + I;
alert(I);
$.post("system/newsfeed/accecptFollow.class.php", {
data1: $("#reqFromID"+I).val(),
data2: $("#reqToID"+I).val()},
function(result){
$("#div1").html(result);
}
);
return false;
};
เวลา alert( I ) มันไม่ค่าออกมาครับ (underfine) ผมเขียนผิดตรงไหนครับ