const m = matchMedia('(min-width: 1000px)');
m.addListener(() => {
// Ваш скрипт тут
});
jQuery(document).ready(function () {
var doc_w = jQuery(document).width();
jQuery.cookie('screen_w', doc_w);
});
jQuery(window).resize(function () {
var doc_w = jQuery(document).width();
my_func(doc_w);
});
function my_func(doc_w) {
coo = jQuery.cookie('screen_w');
if (coo != null) {
r = coo < 1000 ? 1 : 2;
}
res = doc_w < 1000 ? 1 : 2;
if (res != r) {
// тут функция
}
jQuery.cookie('screen_w', doc_w);
}