Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

Drop-down menu cannot be selected by mouse-clicking in 40.0.2

  • 1 ответ
  • 30 имеют эту проблему
  • 6 просмотров
  • Последний ответ от Nannakuhtum

more options

Just updated to 40.0.2 in our office and all machines cannot select from drop down boxes. Clicking the box activates the drop down, but the selection will not select, although it can be selected by hitting "enter" on keyboard

Thanks for your help.

Just updated to 40.0.2 in our office and all machines cannot select from drop down boxes. Clicking the box activates the drop down, but the selection will not select, although it can be selected by hitting "enter" on keyboard Thanks for your help.
Приложенные скриншоты

Изменено zero-one

Все ответы (1)

more options

We faced exactly the same problem.

We figured out that there was a 'mouseup' listener attached to document that did event.preventDefault which caused this problem in firefox 40.0.2.

$(document).on('mouseup', function(e) {

   /**  some code here */
   e.preventDefault();

}); Luckily for us that e.preventDefault was unwanted, so removing it fixed the issue.