Skip to main content

Bug Tracker

Side navigation

#12379 closed bug (cantfix)

Opened August 23, 2012 06:14AM UTC

Closed August 23, 2012 02:13PM UTC

Last modified August 25, 2012 09:08AM UTC

programmatic click of a radio triggers change radio is checked BEFORE firing in chrome and AFTER firing in IE 7/8

Reported by: jpillora@gmail.com Owned by:
Priority: undecided Milestone: None
Component: event Version: 1.8.0
Keywords: Cc:
Blocked by: Blocking:
Attachments (0)
Change History (3)

Changed August 23, 2012 02:13PM UTC by timmywil comment:1

component: unfiledevent
resolution: → cantfix
status: newclosed

We are unable to control the order in which native events are fired.

Changed August 23, 2012 02:42PM UTC by dmethvin comment:2

In this case it's a non-native event though, and it's complicated by the fact that IE6/7/8 don't have correct behavior on the change event so we have to simulate it. However, this is basically a dup of #3827 which is for checkboxes. The workaround is to use $("input")[0].click(); to get consistent behavior.

http://jsfiddle.net/dmethvin/u99Vr/14/

Changed August 25, 2012 09:08AM UTC by anonymous comment:3

I'll give the workaround a try, thanks for the reply guys