Hapus Tombol Garis Tabel HTML Menggunakan JavaScript

// JQuery solution!
$('table').on('click', 'input[type="button"]', function(e){
   $(this).closest('tr').remove()
})
Sparkling Sardine