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