Skip to content

Instantly share code, notes, and snippets.

@idettman
Last active October 14, 2015 15:28
Show Gist options
  • Save idettman/dba44206b8f4fdcc6d97 to your computer and use it in GitHub Desktop.
Save idettman/dba44206b8f4fdcc6d97 to your computer and use it in GitHub Desktop.
Remove all DOM children
/**
* @param {HtmlElement} element
*/
function removeAllChildren(element)
{
while (element.firstChild)
{
element.removeChild(element.firstChild);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment