select all td in table css code example
Example 1: remove tr in table jquery
$("#MyTable").on("click", "#DeleteButton", function() {
$(this).closest("tr").remove();
});
Example 2: delete all content in table mysql
TRUNCATE tablename
$("#MyTable").on("click", "#DeleteButton", function() {
$(this).closest("tr").remove();
});
TRUNCATE tablename