$('#list tr td:not(:first)').click(function() {
})
by the way. where did you come from In addition, your table needs id = "list", therefore:
<table id="list">
<tr>
<td>first</td>
<td></td>
<td></td>
</tr>
<tr>
<td>first</td>
<td></td>
<td></td>
</tr>
</table>
source
share