Skip to content

Instantly share code, notes, and snippets.

@jutionck
Created August 12, 2019 16:36
Show Gist options
  • Save jutionck/168a473c22319656eff6ccb16d0e4f6a to your computer and use it in GitHub Desktop.
Save jutionck/168a473c22319656eff6ccb16d0e4f6a to your computer and use it in GitHub Desktop.
function appendChildren(decorateDivFunction) {
//mengganti getElementsByTagName dengan querySelectorAll
var allDivs = document.querySelectorAll("div");
// loop based on allDivs length
for (var i = 0; i < allDivs.length; i++) {
// create new element div
var newDiv = document.createElement("div");
decorateDivFunction(newDiv);
// append new div into curent div
allDivs[i].appendChild(newDiv);
}
}
// Example case.
document.body.innerHTML = `
<div id="a">
<div id="b">
</div>
</div>`;
//appendChildren(function(div) {});
console.log(document.body.innerHTML);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment