jquery get value of row in table code example
Example: jquery get current row value
function test(){
var id = $(this).closest("tr").find('td:eq(2)').text();
alert(id);
}
function test(){
var id = $(this).closest("tr").find('td:eq(2)').text();
alert(id);
}