Skip to content

Instantly share code, notes, and snippets.

@knorthfield
Last active August 29, 2015 14:18
Show Gist options
  • Save knorthfield/e9c0519a113f4ef4304f to your computer and use it in GitHub Desktop.
Save knorthfield/e9c0519a113f4ef4304f to your computer and use it in GitHub Desktop.
Remove an HTML element
var clear = document.getElementById('clear'),
overlay = document.getElementById('overlay');
clear.addEventListener('click', function(){
overlay.parentNode.removeChild(overlay);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment