Answers for "js clear child"

7

delete all childs in node

while (myNode.firstChild) {
  myNode.removeChild(myNode.lastChild);
}
Posted by: Guest on June-15-2020
0

js clear child nodes

<script>
function removeAllChildNodes(parent) {
    while (parent.firstChild) {
        parent.removeChild(parent.firstChild);
    }
}

const container = document.getElementById('container');
removeAllChildNodes(container);
</script>

<div id="container">
  <p>All elements inside this container will be deleted,</p>
  <p>when removeAllChildNodes(container) is run.</p>
</div>
Posted by: Guest on May-18-2021
1

js remove all child elements from html

document.getElementById("myId").innerHTML = '';
Posted by: Guest on November-02-2020
-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"

Browse Popular Code Answers by Language