showing results for - "remove table line button html using javascript"
Elora
05 Oct 2018
1// JQuery solution!
2$('table').on('click', 'input[type="button"]', function(e){
3   $(this).closest('tr').remove()
4})
5