Skip to content

Instantly share code, notes, and snippets.

@akre54
Created February 17, 2014 04:45
Show Gist options
  • Save akre54/9044854 to your computer and use it in GitHub Desktop.
Save akre54/9044854 to your computer and use it in GitHub Desktop.
var rules = [], each = [].forEach;
each.call(document.styleSheets, function(s) {
s.cssRules && each.call(s.cssRules, function(rule) {
rule.media && rules.push(rule.media[0]);
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment