Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

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

  • 1 réponse
  • 30 ont ce problème
  • 6 vues
  • Dernière réponse par 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.
Captures d’écran jointes

Modifié le par zero-one

Toutes les réponses (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.