Skip to content

Instantly share code, notes, and snippets.

@eddydarell
Created July 27, 2021 14:11
Show Gist options
  • Select an option

  • Save eddydarell/359dabe9cd6d2a9ae1bb038fdbb664fc to your computer and use it in GitHub Desktop.

Select an option

Save eddydarell/359dabe9cd6d2a9ae1bb038fdbb664fc to your computer and use it in GitHub Desktop.
Remove all styling on a page

Remove all styling on a page using vanilla JavaScript.

document.querySelectorAll('style,link[rel="stylesheet"]').forEach(item => item.remove())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment