1.3b1
click here to add a description
click here to add a homepage
jQuery JavaScript Library — Read more
Tagging the 1.3b1 release.
Synced with Sizzle codebase (which removed the use of the caching code).
Disabled native event triggering (and, thus, bubbling) for global events.
Added a new liveQuery/event delegation hybrid method: .live and .die. Easily adapts event delegation to the jQuery style. $("div").live("click", fn); $("div > #foo").live("submit", fn); $("div").die("click");
Made sure that the correct event.taget is being used in event bubbling.
Added support for bubbling triggered events.
Added support for the new .closest() method (very useful for event delegation).
Oops, forgot to commit support.js.
Added the new jQuery.support object and removed all uses of jQuery.browser from within jQuery itself (while simultaneously deprecating the use of jQuery.browser).
Fixed an issue with domManip where the incorrect document was being used to create the document fragment.
Syncing Sizzle codebase.
Added a missing semicolon.
Landing the new Sizzle selector engine. There'll need to be some later tweaks (to make the tests a little more pragmatic - especially for document order elements). But it appears to be passing well and that's enough. Closes #3563.
Rewrote the hide and show methods to fix the issue with Safari not hiding distached elements. Fixed #1239, #2233, #3038, #3343, #3395. They're also faster now, as well.
Fixed an issue with domManip where the incorrect clone fragments were being used for elements.
Fixed a problem with multi-namespaced events not targetting the correct functions for execution.
Fixed an issue with how .data() was expecting output (trigger now returns exact output - or null if none is provided, which was tripping it up).
Fixed line-ending issue.
Tweaked mis-numbered makeArray test.
Switched to using DOM Fragments in domManip.
Added selector path logging (creates a trail that plugins can use).
Removing remaining strict-mode warnings.
Added support for multiple-namespaced events (in bind, trigger, and unbind).
Simplifying the DOM ready code, no longer attempting to handle stylesheet loading. Closes #2614.
core: cleanup of build - build.js isn't used anywhere
testrunner: re adding the test for a function within isFunction.
testrunner: adding tests for $.fn.hasClass.
IE doesn't care for boolean checks of .createElement - reverted back to using typeof instead.
Made a mistake in the patch for #3618, landing fix.
The code for handling Ajax timeouts was broken (the abort was being called too early). Fixing this allows the test suite to work again.