Skip to content

Instantly share code, notes, and snippets.

@wtfaremyinitials
Created August 13, 2015 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wtfaremyinitials/eade9ff0d3e9fa375c14 to your computer and use it in GitHub Desktop.
Save wtfaremyinitials/eade9ff0d3e9fa375c14 to your computer and use it in GitHub Desktop.
Access CSS media queries in JavaScript
#media::before {
content: 'desktop';
}
@media (max-width: 500px) {
#media::before {
content: 'mobile';
}
}
var cssClass = window.getComputedStyle(
document.querySelector('#media'), ':before'
).getPropertyValue('content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment