$(window).resize(function() {
if(document.documentElement.clientWidth > 1200) {
// скрипт
}
});
window.onresize = function(event) {
if(window.innerWidth >= 1200) {
// скрипт
}
});
if (document.body.clientWidth>1200){
// скрипт
}
var mediaQuery = window.matchMedia("screen and (min-width: 600px)");
mediaQuery.addListener(foo);
foo(mediaQuery);
function foo(mq) {
document.body.style.backgroundColor = mq.matches ? '#f00' : '#060';
}