Opened 13 years ago
Closed 13 years ago
#6100 closed bug (worksforme)
jQuery doesn't trigger change event in ie6 for file inputs.
Reported by: | dchaplinsky | Owned by: | |
---|---|---|---|
Priority: | Milestone: | 1.4.2 | |
Component: | event | Version: | 1.4.1 |
Keywords: | change, file input, ie6 | Cc: | |
Blocked by: | Blocking: |
Description
With jQuery 1.4.1 I'm not able to track when change event occurs for file inputs (i.e when you selected file and closed file dialog). It occurs only when I'm clicking on file input once again.
1.3.2 doesn't have such bug.
I guess, problem is somewhere below this:
// change delegation, happens here so we have bind. if ( !jQuery.support.changeBubbles ) {
At least, when I replacing
var formElems = /textarea|input|select/i;
with
var formElems = /textarea|select/i;
it works like a charm.
Note: See
TracTickets for help on using
tickets.
This has already been fixed in jQuery 1.4.2.