How to insert an element between the two elements dynamically?
- by Harish
I am using a table, in which there are buttons, on button click i want the new TR element to be inserted between the two TR or at the end of the TR...
my code goes here
<table>
<tbody>
<tr>
<td>
<input type="submit" value="Add" onclick="addFunction()" />
</td>
</tr>
<tr>
<td>
<input type="submit" value="Add" onclick="addFunction()" />
</td>
</tr>
<tr>
<td>
<input type="submit" value="Add" onclick="addFunction()" />
</td>
</tr>
</tbody>
</table>
i want to insert new TR element next to the element which has triggered the event...
NOTE: i am not using any javascript library, just plain javascript