Update: This only applies to jQuery 1.8 and below. This was fixed in jQuery 1.9.
Here is my minimal jsfiddle example: http://jsfiddle.net/8fuEJ/. I\'m using
There are three types of actions going on here:
Click()
event calls the javascript event first. jQuery prioritizes the function you provided, as it may very well cancel that click or perform some other action. After that is completed, javascript changes the status of the checkbox.Change()
event is mimicking the manual clicking by telling the browser to click it. That means that the item is being changed by the browser, which then in turn is calling your triggered event.Essentially the difference is that the Click()
is a straight javascript call. It can do things the others cannot, such as cancel the change and do all sorts of other zany stuff, so it is delaying the change of state for as long as it can.
The click event fires before the default action. It does this to allow you to prevent the default action from occurring by returning false from the handler.
In your example, this means that you alert the old value as the default action of changing the checkbox state has not yet occurred.