Skip to content

Instantly share code, notes, and snippets.

@jonalter
Created December 6, 2011 21:38
Show Gist options
  • Save jonalter/1440115 to your computer and use it in GitHub Desktop.
Save jonalter/1440115 to your computer and use it in GitHub Desktop.
Remove all children function
// Remove all children from a view
// Pedro :)
function removeChildren(el){
var children = el.children;
while(el.children.length){
var child = children[el.children.length-1];
removeChildren(child);
el.remove(child);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment