I have this code right now to get the row value from jquery grid..
$("#table1").click(function(e) {
var row = jQuery(e.target).parent();
value = row.attr("id");
I need to loop all the rows to get the values.
Can anyone help me out that? if I click on second row I need get second row value, if I click on first row I need to get first row value.