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 cany anyone help me out.. that is 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.
thanks