You can handle the first column using the :first-child selector , for example:
$('tr td:first-child').click(function() { $("#showgrid").load('/Products/List/Items/'); });
This selector returns the first <td> in each <tr> .
Alternatively, if you have many lines, use .delegate() for better performance (for only one event handler), for example:
$('#myTable').delegate('tr td:first-child', 'click', function() { $('#showgrid').load('/Products/List/Items/'); });
source share