javascript remove the current tr with click

Solutions on MaxInterview for javascript remove the current tr with click by the best coders in the world

showing results for - "javascript remove the current tr with click"
Jordan
05 Jul 2016
1<!--Buuton inside any cell in the TR row -->
2<input type="button" onClick="$(this).closest('tr').remove();">
Elena
16 May 2017
1//JQuery:
2$(this).closest('tr').remove();