I have a table in html as follows
<table>
<tbody>
<tr>
<td>test content</td>
<td><input type="button" onClick="remove()"></td>
</tr>
....
...
</tbody>
</table>
now if the same pattern continues, i want to remove a row if a remove button is clicked on that row. how do i achieve the same with jQuery?