Modify ↓
Ticket #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 | |
| Blocking: | Blocked by: |
Description
This code does't work in IE6
$('form').bind
(
"change", function(event) {
$(event.target).addClass('fieldChanged');
}
);
Why?
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
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).