Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a select element with an onChange event that does fire when I click the select box and select a new value within it. But, when I tab to the select box and press the up or down arrows to change the select box's value, the event does not fire.

I am using jQuery().change(function(){ ... }); to set the event

share|improve this question
2  
ehh, you need to press return in order to make a "change". – jAndy Jul 1 '11 at 17:28
It doesn't change the value until the blur event happens. – Niklas Jul 1 '11 at 17:29
Try combining it with the click event, I think that may fire in that case. – InfinitiesLoop Jul 1 '11 at 17:32

4 Answers

up vote 1 down vote accepted

When you tab into a <select> element, the change event doesn't fire until you press the Enter key.

share|improve this answer
Turns out, this is the problem. I just used the bindWithDelay jQuery plugin to have it change on keyup after a delay. – c00lryguy Jul 1 '11 at 17:46

For an onChange() to fire the value must be changed and the input must be blur()-ed (focus moved elsewhere); which is why it fires in your first case, but not in the second.

The change event is sent to an element when its value changes. This event is limited to <input> elements, <textarea> boxes and <select> elements. For select boxes, checkboxes, and radio buttons, the event is fired immediately when the user makes a selection with the mouse, but for the other element types the event is deferred until the element loses focus.

Reference:

share|improve this answer

As others have stated, the change event doesn't happen until the blur event. You'll need to monitor keyup as well to capture someone moving changing the values with the arrow keys.

Monitor keyup and change,

$('select').bind('change keyup', function() {
   // Handle
});

http://jsfiddle.net/robert/Je26w/

share|improve this answer

You can trigger the blur event on keyup on the select and then give back focus, which will trigger the change:

$('select').keyup(function(){
  $(this).blur().focus();
});

example: http://jsfiddle.net/niklasvh/XEg36/

share|improve this answer
This did not give me back focus in FireFox. But this works: $('select').keyup(function(){ $(this).trigger("change"); }); – Michael Feb 13 at 20:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.