delete all childs in node
while (myNode.firstChild) {
myNode.removeChild(myNode.lastChild);
}
delete all childs in node
while (myNode.firstChild) {
myNode.removeChild(myNode.lastChild);
}
Javascript remove all child elements
var myDiv = document.getElementById("myDivID");
myDiv.innerHTML = "";//remove all child elements inside of myDiv
javascript remove last child element
function remove_last_child() {
var select = document.getElementById('parent_element');
select.removeChild(select.lastChild);
}
js remove child elements
function deleteChild() {
let e = document.querySelector("ul");
//e.firstElementChild can be used.
let child = e.lastElementChild;
while (child) {
e.removeChild(child);
child = e.lastElementChild;
}
}
let btn = document.getElementById(
"btn").onclick = function() {
deleteChild();
}
remove child in js
var list = document.getElementById("myList"); // Get the <ul> element with id="myList"
list.removeChild(list.childNodes[0]); // Remove <ul>'s first child node (index 0)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us