Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Ďalšie informácie

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

  • 1 odpoveď
  • 30 má tento problém
  • 6 zobrazení
  • Posledná odpoveď od 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.
Priložené obrázky

Upravil(a) zero-one dňa

Všetky odpovede (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.