jQuery 1.2.3: Support for AIR, Namespacing
Written by on February 8th, 2008 in Ajax News.
The jQuery team announced today the release of jQuery v1.2.3. Primarily a bug fix for v1.2.2, this new release also includes new features to make it compatible with the Adobe AIR runtime and SDK:
The primary purpose of this release was to fix a couple outstanding bugs from the jQuery 1.2.2 release. Specifically, this release is now compatible with Adobe AIR, will be included in Drupal 6, and will be the base for jQuery UI 1.5. Additionally, a couple minor features, for plugin developers, were included in this release.
Another notable feature is the enhancement of the namespaced event methods, specifically unbind(), which now allows you to remove all bound events that match a particular namespace.:
$("div").bind("mouseover.plugin", function(){});
$("div").unbind(".plugin"); // All handlers removed
You can download this new jQuery release via the following links:
jQuery 1.2.3:
- jQuery Minified (15kb with Gzipping)
- jQuery Packed (29kb)
- jQuery Regular (94kb)
If you wish to checkout the full release from the Subversion repository, you can do so by following the instructions and checking out the source from the following location:
svn co http://jqueryjs.googlecode.com/svn/tags/1.2.3
Source: Ajaxian
Original Article: http://feeds.feedburner.com/~r/ajaxian/~3/231645523/jquery-123-support-for-air-namespacing