we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
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