Skip to content

Instantly share code, notes, and snippets.

@gaurangrshah
Created April 17, 2021 06:42
Show Gist options
  • Save gaurangrshah/9dae48cfe6394bf1b27ea8b76f5daf21 to your computer and use it in GitHub Desktop.
Save gaurangrshah/9dae48cfe6394bf1b27ea8b76f5daf21 to your computer and use it in GitHub Desktop.
/* NOT TO BE USED IN PRODUCTION == FOR BROWSER HACKS ONLY */
function removeAllChildNodes(parent) {
while (parent.firstChild) {
parent.removeChild(parent.firstChild);
}
}
// USAGE:
const container = document.querySelector('#container');
removeAllChildNodes(container);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment