Answers for "delete all children of div"

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 "delete all children of div"

Code answers related to "Javascript"

Browse Popular Code Answers by Language