Skip to content

Instantly share code, notes, and snippets.

@ajace
Created August 30, 2013 18:17
Show Gist options
  • Save ajace/6392779 to your computer and use it in GitHub Desktop.
Save ajace/6392779 to your computer and use it in GitHub Desktop.
function removeElement(node) {
if (node.parentNode) {
node.parentNode.removeChild(node);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment