How to handle click event 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 18:08 UTC
Read the original article Hit count: 141

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

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

How can I handle only on the first column? that is, giving click action to only first column not on entire row?

thanks

© Stack Overflow or respective owner

Related posts about jQuery