$(document).ready(function(){ // Установка классов для браузеров if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { $("html").addClass("mobile"); } if(navigator.userAgent.match(/(iPhone|iPad|iPod)/i)){ $("html").addClass("apple"); } if(navigator.userAgent.match(/(Chrome|Iron)/i)){ $("html").addClass("chrome"); } if(navigator.userAgent.match(/(MSIE)/i)){ $("html").addClass("ie"); if(parseInt($.browser.version) > 9){$("html").addClass("ie10");}} if(navigator.userAgent.match(/(Mobile)/i)){ $("html").addClass("mobile"); } if(navigator.userAgent.match(/(Opera)/i)){ $("html").addClass("opera"); } if(navigator.userAgent.match(/^((?!chrome|android).)*safari/i)){ $("html").addClass("safari"); } if(!$('html').hasClass('mobile')){ $("html").addClass("desktop"); } // Очищаем класс ожидания, когда все загрузилось $('body').removeClass('wait'); });