Skip to content

Instantly share code, notes, and snippets.

@rbk
Created April 1, 2024 17:10
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 rbk/04f357422f751fdd0f296a09052d177d to your computer and use it in GitHub Desktop.
Save rbk/04f357422f751fdd0f296a09052d177d to your computer and use it in GitHub Desktop.
Remove all CSS styles from the DOM
Array.from(document.querySelectorAll('style, link')).map(x => x.remove());
Array.from(document.querySelectorAll('*')).map(x => {
x.setAttribute('stlye', "")
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment