I am try to set click event on table every row with this.
This is table:
<table border='1px'>
<tr>
<td class='td'>first row frist column</td>
<td>first row second column</td>
</tr>
<tr>
<td class='td'>second row frist column</td>
<td>second row second column</td>
</tr>
<tr>
<td class='td'>third row frist column</td>
<td>third row second column</td>
</tr>
</table>
And this is simple jQuery:-
$('table tbody tr td:nth-child(1)').live('click',function(){
alert($(this).text());
})
With this I click any of first column then on its alert I want to unset table first row column click event.
How can I do this.