How can I run a jquery function only on @media screen?
@media screen
Background:
I have a screen.css stylesheet and a print.css styl
screen.css
print.css
In latest browsers you can use matchesMedia:
if (window.matchMedia("screen").matches) { .... }
If you want to support older browsers too you can use a polyfill like matchMedia.js