How to get the Particular column value using jquery

Posted by rockers on Stack Overflow See other posts from Stack Overflow or by rockers
Published on 2010-06-11T03:49:13Z Indexed on 2010/06/11 4:02 UTC
Read the original article Hit count: 228

Filed under:

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?

© Stack Overflow or respective owner

Related posts about jQuery