How to handle click evnt on table at first column using jquery
- by kumar
$('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