Skip to content

Instantly share code, notes, and snippets.

@nauzilus
Last active August 29, 2015 14:21
Show Gist options
  • Save nauzilus/91a5249c880229a73f30 to your computer and use it in GitHub Desktop.
Save nauzilus/91a5249c880229a73f30 to your computer and use it in GitHub Desktop.
Destyle
(function(){
var $=function(selector){
return [].slice.call(document.querySelectorAll(selector));
};
$("style,link[rel='stylesheet'],img,video,object").forEach(function(v) {
v.remove();
})
$("[style]").forEach(function(v) {
v.removeAttribute("style")
});
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment