Skip to content

Instantly share code, notes, and snippets.

@crccheck
Created December 6, 2010 17:33
Show Gist options
  • Save crccheck/730617 to your computer and use it in GitHub Desktop.
Save crccheck/730617 to your computer and use it in GitHub Desktop.
Remove all CSS styles bookmarklet
javascript:(function(){$('[style]').removeAttr('style'); $('link[type="text/css"]').remove(); $('style').remove();})();
@mat-m
Copy link

mat-m commented Feb 9, 2016

You missed $('link[rel="stylesheet"]').remove(); because Github, as an example does not use type="text/css" for their css but the rel attribute

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment