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.

Firefox 29 update does not recognize event "keypress" when pressing (intro) (keycode 13) over <select> element on form

  • 3 uphendule
  • 14 zinale nkinga
  • 82 views
  • Igcine ukuphendulwa ngu cquispem

more options

Hi Mozilla friends, I have ome issues after the 29 Update: I develop surveys for quick data registration using html5 and jquery, before the Update the event keypress aplied to select elements was working fine (users register data using numeric keyboard and instead of tab they use enter key for navigate to the next field , the field can be an input or a select) I have a function that simulates a tab when a user press the enter key using keypress, but the event is not fired anymore with that key. I 'd like to know if it is a bug or a programmed update to Firefox.


PD: Thanks for al your efforts Mozilla!!!

Hi Mozilla friends, I have ome issues after the 29 Update: I develop surveys for quick data registration using html5 and jquery, before the Update the event keypress aplied to select elements was working fine (users register data using numeric keyboard and instead of tab they use enter key for navigate to the next field , the field can be an input or a select) I have a function that simulates a tab when a user press the enter key using keypress, but the event is not fired anymore with that key. I 'd like to know if it is a bug or a programmed update to Firefox. PD: Thanks for al your efforts Mozilla!!!

Isisombululo esikhethiwe

I think I found it: Bug 935876 – <select> element shouldn't consume key events which don't cause any default action.

This bug is a fix to a fix so it's a little confusing, but the idea is to discard the keypress event for the Enter key because...

// If the select element is a dropdown style, Enter key should be
// consumed everytime since Enter key may be pressed accidentally after
// the dropdown is closed by Enter key press.

I'm not sure that really makes sense but there is so much history in that and the earlier bug that I can't follow all the arguments.

Funda le mpendulo ngokuhambisana nalesi sihloko 👍 1

All Replies (3)

more options

Yes, I have an old page with a function that does a similar thing and I see that change also.

I make a Fiddle for watching the events on the select: http://jsfiddle.net/rXDsW/

I can't think of a reason for this change, and didn't immediately see something in Bugzilla for it. But I am not very good at searching Bugzilla...

more options

Isisombululo Esikhethiwe

I think I found it: Bug 935876 – <select> element shouldn't consume key events which don't cause any default action.

This bug is a fix to a fix so it's a little confusing, but the idea is to discard the keypress event for the Enter key because...

// If the select element is a dropdown style, Enter key should be
// consumed everytime since Enter key may be pressed accidentally after
// the dropdown is closed by Enter key press.

I'm not sure that really makes sense but there is so much history in that and the earlier bug that I can't follow all the arguments.

more options

Hello jscher2000, well, I guess this is a tricky one issue, so I had changed the event by keydown, I've already tested and it works fine. Thanks for your very quick response.