Skip to content

Instantly share code, notes, and snippets.

@JoshBarr
Created June 17, 2014 23:40
Show Gist options
  • Save JoshBarr/02eccf42d0e3290d2f51 to your computer and use it in GitHub Desktop.
Save JoshBarr/02eccf42d0e3290d2f51 to your computer and use it in GitHub Desktop.
Clear a DOM node quickly.
while (item.firstChild) {
item.removeChild(item.firstChild);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment