Opened 13 years ago
Closed 12 years ago
#5934 closed bug (worksforme)
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.
Attachments (1)
Change History (3)
Changed 13 years ago by
comment:1 Changed 13 years ago by
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.
Note: See
TracTickets for help on using
tickets.
example