Answers for "how to clear all table except headers in javascript"

1

clear elements of table javascript

var Table = document.getElementById("mytable");
Table.innerHTML = "";
Posted by: Guest on April-21-2022
0

javascript clear table body

$("#tbodyid").empty();
Posted by: Guest on April-28-2021

Code answers related to "how to clear all table except headers in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language