Clear HTML table

PHOTO EMBED

Sat Nov 28 2020 17:37:46 GMT+0000 (Coordinated Universal Time)

Saved by @malcolm #javascript

var clearTable = function(tableId) {
  var tableToClear = document.getElementById(tableId);
  while (tableToClear.rows.length > 1) {
    tableToClear.deleteRow(1);
  }
}
content_copyCOPY

Clears all the rows of an HTML table without affecting the table headers.