Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

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

  • 1 baphendule
  • 30 zinale nkinga
  • 3 views
  • Igcine ukuphendulwa ngu 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.
Ama-screenshot ananyekiwe

Okulungisiwe ngu zero-one

All Replies (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.