How to get the Particular column value using jquery
- by rockers
I used this code to get the particular column value using jquery..
$("#Grid td:first-child").click(function() {
var resultArray = $(this).closest('tr').find('td').text();
alert(resultArray);
});
How do I get the particular column value? That is, I need grid 4th and 5th column value?