ソリューションはjQueryを使用することも、プレーンJavaScriptにすることもできます。
ユーザーがテーブル行のセルに含まれている対応するボタンをクリックした後、テーブル行を削除したいので、たとえば次のようにします。
<script>
function SomeDeleteRowFunction() {
//no clue what to put here?
}
</script>
<table>
<tr>
<td><input type="button" value="Delete Row" onclick="SomeDeleteRowFunction()"></td>
</tr>
<tr>
<td><input type="button" value="Delete Row" onclick="SomeDeleteRowFunction()"></td>
</tr>
<tr>
<td><input type="button" value="Delete Row" onclick="SomeDeleteRowFunction()"></td>
</tr>
</table>