Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@TheRolfFR
Last active October 3, 2021 11:42
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 TheRolfFR/c437fed78003fcbd4ed567277e833ffe to your computer and use it in GitHub Desktop.
Save TheRolfFR/c437fed78003fcbd4ed567277e833ffe to your computer and use it in GitHub Desktop.
Simply remove the element
/**
* Simply remove the element
* @author TheRolf
*/
Element.prototype.remove = function() {
this.parentElement.removeChild(this)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment