Jump to content
  • 0

Проблема отображения элемента в Firefox


Highlander
 Share

Question

Добрый день уважаемые коллеги, столкнулся со странным поведением элемента в Firefox, точнее странном отсутствии поведения. 
http://test.shn-host.ru/ в разделе Каталог товаров есть фильтр, с цветом, размером, стилем. Во всех браузерах выпадающие списки в фильтрах работают как нужно, только в FF на нажатие вообще нет реакции. Обычно проблемы в IE, но тут нет, в IE все отрабатывает нормально. 
Просмотрел все что в голову приходило, посмотрите кому не сложно, возможно что-то упускаю. Спасибо.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

У вас ошибка на event.stopPropagation().

Нужно добавить в параметр функции переменную event на 32 строчке в файле common.js:

$(".custom-select-trigger").on("click", function(event) { // <- тут добабвить event
  $('html').one('click',function() {
    $(".custom-select").removeClass("opened");
  });
  $(this).parents(".custom-select").toggleClass("opened");
  event.stopPropagation();
});

 

  • Like 1
Link to comment
Share on other sites

  • 0
4 часа назад, mrnobody сказал:

У вас ошибка на event.stopPropagation().

Нужно добавить в параметр функции переменную event на 32 строчке в файле common.js:


$(".custom-select-trigger").on("click", function(event) { // <- тут добабвить event
  $('html').one('click',function() {
    $(".custom-select").removeClass("opened");
  });
  $(this).parents(".custom-select").toggleClass("opened");
  event.stopPropagation();
});

 

В точку! преогромнейшее человеческое спасибо, мог бы плюсануть - поставил бы не раздумывая. 

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