Answers for "how to remove all children from a dom element"

15

Javascript remove all child elements

var myDiv = document.getElementById("myDivID");
    myDiv.innerHTML = "";//remove all child elements inside of myDiv
Posted by: Guest on July-26-2019
0

delete all children of div

const parent = document.getElementById("foo")
while (parent.firstChild) {
    parent.firstChild.remove()
}
Posted by: Guest on May-28-2021

Code answers related to "how to remove all children from a dom element"

Code answers related to "Javascript"

Browse Popular Code Answers by Language