Side navigation
#5934 closed bug (worksforme)
Opened January 26, 2010 09:57AM UTC
Closed October 02, 2010 06:26PM UTC
onChange event no fired in IE8
Reported by: | starsolaris | Owned by: | brandon |
---|---|---|---|
Priority: | major | Milestone: | 1.4.2 |
Component: | event | Version: | 1.4.1 |
Keywords: | ie change event click | Cc: | |
Blocked by: | Blocking: |
Description
Simple example, worked in 1.3.2, not worked in 1.4, 1.4.1
HTML code:
<select id="test" size="3">
<option value="1">1</option>
<option value="2">2</option>
</select>
event handler
$("#test").change(function(){
alert("test");
});
Event fired only after second click in select box.
Same problem here, but I'm running into the problem with <input type='text' /> boxes. The change event is not fired the first time the user changes the value of the box. It works correctly after that.