I have table which is bound dynamically:
<table id="test">
<tr>
<td>test1
<td>
</tr>
<tr>
<td>test2
<td>
</tr>
<tr>
<td>test1
<td>
</tr>
<tr>
<td>test2
<td>
</tr>
</table>
I want to remove duplicate table rows, producing a result like this.
<table id="test">
<tr>
<td>test1
<td>
</tr>
<tr>
<td>test2
<td>
</tr>
</table>
I'm trying to do it through this btnRearrange
click.
$('#btnRearrange').bind("click", function() {
// want some help hear
});
Thanks.
See Question&Answers more detail:os