1.2.3b
click here to add a description
click here to add a homepage
jQuery JavaScript Library — Read more
Tagging the 1.2.3b release.
You can now overwrite values returned from .data() with .bind("getData") - returning a value will override any bound value on that element.
Tweaked the .data() event triggering - it now triggers a single 'setData' event, passing in a key value pair of what was changed.
Added support for .unbind(".test") to unbind all namespaced events on an element.
Added $().data(), $().removeData(), and .bind("click!"). .data() and .removeData() handle namespaced data, .data() triggers a "set-KEY" event on all modified elements, and .bind("click!") only triggers a click (and no namespaced events).
Updated the years on the licensing.
Tagging the 1.2.3a release.
Fixed make speed.
De-eval'd selectors and the various DOM methods (will marginally help our speed and make us more compatible with projects like Caja and Adobe AIR). Left a selector eval in for backwards compatibility support of selector plugins.
Fix #2184 by using the jQuery.clean() function instead of a direct innerHTML assignment in the clone() function for IE.
global replace for @VERSION, fixed #2101
Fixed #2174 by removing the s.dataType == "json" check for possible cross domain since it causes absolute urls to use a <script> tag ajax retrieval even though absolute urls work fine for retrieving local data. Cross-domain jsonp will still work since the $.ajax() function actually changes the s.dataType to "script" before it reaches this check in cases where it is s.dataType == "jsonp" or s.dataType == "json" and a parameter has =? in it.
Updating version number to 1.2.3-pre
Tagging the 1.2.2 release.
Changing end of line from CRLF to just LF like the rest of the source files.
Discontinued the test for $(form.elements).
Excluded a couple Ajax tests from running locally.
Added support for breaking in an object loop (Bug #2111).
And the rest of the _default change.
Tweaked the default Accept header to _default.
Added a check to make sure that .style exists before trying to access it (Bug #2105).
Fixed default property name for Opera (bug #2159).
Fixed minor issue with pack build script. (Bug #2101)
Adding browser UA tests
Added a fix for bug #2140. Opera doesn't like concating null or undefined values.
Just added support for Accept headers in Ajax requests - defaults to the correct header depending on the type of request that's being performmed. (Bug #1986)
reverted change for #2114
fix for #2114; refactored tests for bind() to highlight failing select-change-test
Tweaked comment for isFunction.
Fixed an edge case in show() where the css says the display should be none. In that case force 'block' so it will actually show.