js remove tr when clicked code example
Example 1: javascript remove the current tr with click
//JQuery:
$(this).closest('tr').remove();
Example 2: javascript remove the current tr with click
<!--Buuton inside any cell in the TR row -->
<input type="button" onClick="$(this).closest('tr').remove();">