Clone Row Table
Clone Row Table
HTML
<table>
<tr>
<td><a href="#">Example One</td>
</tr>
<tr>
<td><a href="#">Example two</td>
</tr>
</table>
JavaScript
$('a').live('click', function(){
var $this = $(this),
$parentTR = $this.closest('tr');
$parentTR.clone().insertAfter($parentTR);
});