Skip to content

Instantly share code, notes, and snippets.

@fiveminuteargument
Created March 26, 2013 00:43
Show Gist options
  • Save fiveminuteargument/5242213 to your computer and use it in GitHub Desktop.
Save fiveminuteargument/5242213 to your computer and use it in GitHub Desktop.
Remove all children of a DOM Node
while (el.firstChild)
el.removeChild(el.firstChild);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment