Answers for "javascript remove children"

7

delete all childs in node

while (myNode.firstChild) {
  myNode.removeChild(myNode.lastChild);
}
Posted by: Guest on June-15-2020
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
1

Remove all child nodes of a list:

// Get the <ul> element with id="myList"
let list = document.getElementById("myList");

// As long as <ul> has a child node, remove it
while (list.hasChildNodes()) {  
  list.removeChild(list.firstChild);
}
Posted by: Guest on August-13-2020
0

clear element children js

const myNode = document.getElementById("foo");
myNode.textContent = '';
Posted by: Guest on October-14-2021
-1

javascript clear child elements

parent.querySelectorAll("*").forEach(child -> child.remove());

//Change the value of * if there is a specific class you want to remove 
//otherwise leave the * for removing all child elements.
Posted by: Guest on June-19-2021

Code answers related to "javascript remove children"

Code answers related to "Javascript"

Browse Popular Code Answers by Language