Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

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.