Перестало открываться модальное окно Не могу найти ошибку уже длительное время http://kit-tel.ru при клике по кнопке купить если разрешение экрана более 1024 на 768 открывается модальное окно использую nyroModal function ScreenWorkspace(){ if(window.innerWidth){ width = window.innerWidth; height = window.innerHeight; } else if(document.documentElement && document.documentElement.clientWidth){ width = document.documentElement.clientWidth; height = document.documentElement.clientHeight; } else if(document.body && document.body.clientWidth){ width = document.body.clientWidth; height = document.body.clientHeight; } if ((width>1024)&&(height>768)) return true; } if (ScreenWorkspace()){ $(function() { $('.ModalWindowBuy').attr('href', function(){return "cart/?act=add&id="+$(this).attr('alt')+"&template=1"}); $('.ModalWindowCart').attr('href', function(){return "cart/?template=1"}); $('.ModalWindowBuy').nyroModal(); $('.ModalWindowCart').nyroModal(); }); } $(window).resize(function() { if (ScreenWorkspace()){ $(function() { $('.ModalWindowBuy').attr('href', function(){return "cart/?act=add&id="+$(this).attr('alt')+"&template=1"}); $('.ModalWindowCart').attr('href', function(){return "cart/?template=1"}); $('.ModalWindowBuy').nyroModal(); $('.ModalWindowCart').nyroModal(); }); } else{ $('.ModalWindowBuy').attr('href', function(){return "cart/?act=add&id="+$(this).attr('alt')}); $('.ModalWindowCart').attr('href', function(){return "cart/"}); $('.ModalWindowBuy').unbind(); $('.ModalWindowCart').unbind(); } })