Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

remove table line button html using javascript

// JQuery solution!
$('table').on('click', 'input[type="button"]', function(e){
   $(this).closest('tr').remove()
})
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #table #line #button #html #javascript
ADD COMMENT
Topic
Name
4+4 =