remove all children from div javascript code example
Example 1: Remove all child nodes of a list:
let list = document.getElementById("myList");
while (list.hasChildNodes()) {
list.removeChild(list.firstChild);
}
Example 2: Javascript remove all child elements
var myDiv = document.getElementById("myDivID");
myDiv.innerHTML = "";
Example 3: 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();
}