Answers for "javascript remove the current tr with click"

0

javascript remove the current tr with click

<!--Buuton inside any cell in the TR row -->
<input type="button" onClick="$(this).closest('tr').remove();">
Posted by: Guest on November-23-2020
0

javascript remove the current tr with click

//JQuery:
$(this).closest('tr').remove();
Posted by: Guest on November-23-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language