Skip to content

Instantly share code, notes, and snippets.

@cuschk
Last active April 25, 2018 18:26
Show Gist options
  • Save cuschk/e9aba1ad3c6a0feab6c1663af9e523d8 to your computer and use it in GitHub Desktop.
Save cuschk/e9aba1ad3c6a0feab6c1663af9e523d8 to your computer and use it in GitHub Desktop.
Remove all styles from a web page
document.querySelectorAll('style, link[rel="stylesheet"]').forEach(el => { el.parentNode.removeChild(el); });
document.querySelectorAll('[style]').forEach(el => { el.removeAttribute('style'); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment