Skip to content

Instantly share code, notes, and snippets.

@cowboy
Created July 7, 2010 13:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save cowboy/466699 to your computer and use it in GitHub Desktop.
Save cowboy/466699 to your computer and use it in GitHub Desktop.
Dump all document.styleSheets[*].cssRules[*].cssText to console
// Dump all document.styleSheets[*].cssRules[*].cssText to console:
(function(s,c,r,i,j){ for(i=0;i<s.length;i++){c=s[i].cssRules;for(j=0;j<c.length;j++){r=c[j].cssText;console.log('document.styleSheets['+i+'].cssRules['+j+'].cssText = "'+r+'";')}} })(document.styleSheets);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment