Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

removing row inside html table with jquery

$(document).on('click', '.remove button', e => {
  $(e.target).closest('tr').remove();
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #removing #row #html #table #jquery
ADD COMMENT
Topic
Name
3+7 =