Jump to content
  • 0

Перестало открываться модальное окно nyroModal


setevoi
 Share

Question

Перестало открываться модальное окно

Не могу найти ошибку уже длительное время

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();
}
})

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Пора уже учиться консолью пользоваться.

Uncaught ReferenceError: $ is not defined http://kit-tel.ru/:13
2Uncaught TypeError: Object function ( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init( selector, context, rootjQuery );
} has no method 'curCSS'

Link to comment
Share on other sites

  • 0

Правильно.

UPD: Там проблема в том, что скрипт на jQuery написан раньше чем подключается сам jQuery, из-за этого скрипт валится с ошибкой и дальше уже ничего не работает естественно. А тот код который ТС привел в первом посте вообще не имеет никакого отношения к проблеме.

Link to comment
Share on other sites

  • 0

Правильно.

UPD: Там проблема в том, что скрипт на jQuery написан раньше чем подключается сам jQuery, из-за этого скрипт валится с ошибкой и дальше уже ничего не работает естественно. А тот код который ТС привел в первом посте вообще не имеет никакого отношения к проблеме.

Теперь вроде подключаю до, но валится все равно

Пора уже учиться консолью пользоваться.

Сейчас буду вникать разбираться :)

очень давно программированием не занимался

Притом на карточке товара работает http://kittel/goods/2/

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy