[jQuery] Re: triggering handlers for native events

2009-09-11 Thread Mike McNally
Well, "change" can be problematic in Internet Explorer because the browser doesn't always trigger that event until the control loses focus. On Fri, Sep 11, 2009 at 12:33 AM, Jules wrote: > > You are right, when click() event is triggered, the check box/radio > button value is the original value.

[jQuery] Re: triggering handlers for native events

2009-09-10 Thread Jules
You are right, when click() event is triggered, the check box/radio button value is the original value. Use change(fn) to detect the after click() value. On Sep 11, 10:40 am, Mike McNally wrote: > Am I the only person who finds wildly wrong the jQuery behavior of > handler invocation for native