How to get the Perticluar 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
            3:52 UTC
        
        
        Read the original article
        Hit count: 330
        
jQuery
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
© Stack Overflow or respective owner