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