javascript remove all children code example
Example 1: delete all childs in node
while (myNode.firstChild) {
myNode.removeChild(myNode.lastChild);
}
Example 2: Remove all child nodes of a list:
let list = document.getElementById("myList");
while (list.hasChildNodes()) {
list.removeChild(list.firstChild);
}
Example 3: Javascript remove all child elements
var myDiv = document.getElementById("myDivID");
myDiv.innerHTML = "";
Example 4: js remove all child elements from html
document.getElementById("myId").innerHTML = '';
Example 5: how to remove all child elements in javascript
document.getElementById("myDivID").innerHTML = "";