html delete table jquery code example
Example 1: remove tr in table jquery
$("#MyTable").on("click", "#DeleteButton", function() {
$(this).closest("tr").remove();
});
Example 2: jquery append table row
$('#someTableID tr:last').after('<tr><td>Some data here</td></tr>');