Skip to content

Instantly share code, notes, and snippets.

@felquis
Created September 7, 2015 03:30
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 felquis/8db54632b49c2830d466 to your computer and use it in GitHub Desktop.
Save felquis/8db54632b49c2830d466 to your computer and use it in GitHub Desktop.
pt-BR: Remove todos os estilos de uma página
var styles = document.querySelectorAll('link[href$=".css"]')
styles = nodeListToArray(styles)
function nodeListToArray(nodeList) {
return Array.prototype.slice.call(nodeList)
}
function removeNode(node) {
node.parentElement.removeChild(node)
}
styles.forEach(removeNode);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment