Skip to content

Instantly share code, notes, and snippets.

@MattMS
Created February 24, 2016 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MattMS/2c1e30bfed0945f0e1e4 to your computer and use it in GitHub Desktop.
Save MattMS/2c1e30bfed0945f0e1e4 to your computer and use it in GitHub Desktop.
Remove all child nodes from a node on a web page.
remove_all_child_nodes = (node)->
while document.body.childNodes.length
document.body.removeChild document.body.childNodes[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment