Skip to content

Instantly share code, notes, and snippets.

@felquis
Last active September 7, 2015 03:38
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/0b81bb5f9e87fe8f5ab9 to your computer and use it in GitHub Desktop.
Save felquis/0b81bb5f9e87fe8f5ab9 to your computer and use it in GitHub Desktop.
Remove todos os estilos de uma página
var styles = document.querySelectorAll('link[rel="stylesheet"], style')
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