Skip to content

Instantly share code, notes, and snippets.

@vjk2005
Created August 1, 2018 22:19
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 vjk2005/df4020d0d15dc6041819f7ebb83a9867 to your computer and use it in GitHub Desktop.
Save vjk2005/df4020d0d15dc6041819f7ebb83a9867 to your computer and use it in GitHub Desktop.
Cleans up DOM by removing elements with the specified class name
[...document.getElementsByClassName('class-name-goes-here')].map(el => el.parentNode.removeChild(el))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment