Opened 15 years ago
Closed 15 years ago
#3339 closed bug (invalid)
don't work event
Reported by: | gipper | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | event | Version: | 1.2.6 |
Keywords: | Cc: | gipper, flesler | |
Blocked by: | Blocking: |
Description
This code does't work in IE6
$('form').bind
(
"change", function(event) {
$(event.target).addClass('fieldChanged');
}
);
Why?
Change History (1)
comment:1 Changed 15 years ago by
Cc: | gipper flesler added |
---|---|
Component: | core → event |
Resolution: | → invalid |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
The 'change' event doesn't bubble on IE, so you can't listen for this event from the form. You need to bind to each element (or use alternate approaches).