How to handle click evnt on table at first column using jquery

Posted by kumar on Stack Overflow See other posts from Stack Overflow or by kumar
Published on 2010-05-04T17:55:12Z Indexed on 2010/05/04 17:58 UTC
Read the original article Hit count: 107

Filed under:
 $('tr').click(function() {
        $("#showgrid").load('/Products/List/Items/');
    });

Using this.I am handling click event on the row of the table..

but my quetions is how Can i handle only on the first column? that is giving click action to only first column not on entire row?

can anyboyd help me out

thanks

© Stack Overflow or respective owner

Related posts about jQuery