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