Skip to content

Instantly share code, notes, and snippets.

@abraham
Created September 5, 2018 20:05
Show Gist options
  • Save abraham/16ee5219b82c507521b3ff583f3ea66d to your computer and use it in GitHub Desktop.
Save abraham/16ee5219b82c507521b3ff583f3ea66d to your computer and use it in GitHub Desktop.
Enable CSS that is behind a `@media print` media query
Object.keys(document.styleSheets).forEach(function(styleSheetKey) {
var rules = document.styleSheets[styleSheetKey].rules || {};
Object.keys(rules).forEach(function(ruleKey) {
var media = rules[ruleKey].media;
if (media) {
media.mediaText = media.mediaText.replace('print', 'screen');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment