Hello, I have following table structure. (Using jQuery)
<table>
<tr>
<td><a href="#"></td>
</tr>
</table>
when I click on <a> I want to add new <tr> next to <tr> of which <a> is clicked.
So the result will be
<table>
<tr>
<td><a href="#"></td>
</tr>
<tr>
<td><a href="#"></td>
</tr>
</table>