Answers for "remove all children of an 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
0

how to destroy all children

public void ClearChildren() {
    Debug.Log(transform.childCount);
    float i = 0;
    foreach (Transform child in transform) {
        i += 1;
        DestroyImmediate(child.gameObject);
    }
    Debug.Log(transform.childCount);
}
Posted by: Guest on March-16-2021

Code answers related to "remove all children of an element"

Code answers related to "Javascript"

Browse Popular Code Answers by Language