javascript how to remove all child elements code example
Example 1: Remove all child nodes of a list:
// Get the <ul> element with id="myList"
let list = document.getElementById("myList");
// As long as <ul> has a child node, remove it
while (list.hasChildNodes()) {
list.removeChild(list.firstChild);
}
Example 2: js remove all child elements from html
document.getElementById("myId").innerHTML = '';