Skip to content

Instantly share code, notes, and snippets.

@webbower
Created December 2, 2017 21:53
Show Gist options
  • Save webbower/e0843ccb4262be1ffe5498933db80d80 to your computer and use it in GitHub Desktop.
Save webbower/e0843ccb4262be1ffe5498933db80d80 to your computer and use it in GitHub Desktop.
Remove all children from a DOM node
// https://stackoverflow.com/a/3955238/2684520
const emptyNode = (el) => {
while (el.lastChild) {
el.removeChild(el.lastChild);
}
return el;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment