const isDesktop = window.matchMedia('only screen and (min-width: 640px)');
if (isDesktop.matches) {
//<![CDATA[
(function($){
$.fn.preload = function() {
this.each(function(){
$('<img/>')[0].src = this;
});
$(['/img/one.gif','/img/two.gif','/img/three.gif',]).preload();
}
})(jQuery);
//]]>
alert(window.innerWidth);
}
const isDesktop = window.matchMedia('only screen and (min-width: 1024px)');
if (isDesktop.matches) {
//<![CDATA[
(function($){
$.fn.preload = function() {
this.each(function(){
$('<img/>')[0].src = this;
});
$(['/img/one.gif','/img/two.gif','/img/three.gif',]).preload();
}
})(jQuery);
//]]>
}
Заработало для Sweb! Спасибо!
Для того же sweb настройка файла .htaccess: