Skip to content

Instantly share code, notes, and snippets.

@csmr
Created February 12, 2019 16:16
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 csmr/435e3dd3cd6e954d9c4093be36cc7bb6 to your computer and use it in GitHub Desktop.
Save csmr/435e3dd3cd6e954d9c4093be36cc7bb6 to your computer and use it in GitHub Desktop.
[js] Deleting stylesheets from DOM
var list = doc.querySelectorAll('link[rel=stylesheet]');
// Remove all stylesheet references
list.forEach( el => {
el.parentNode.removeChild(el);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment