Bug Tracker

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 flesler

Cc: gipper flesler added
Component: coreevent
Resolution: invalid
Status: newclosed

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).

Note: See TracTickets for help on using tickets.