1.2.3a
click here to add a description
click here to add a homepage
jQuery JavaScript Library — Read more
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.
Adds support for username and password to $.ajax
Test for #2114
Fixes bug with charCode, bad 'var' and missing semicolon
Fixed #2084 by added embed to the list of elements where it is ok to have self closing xhtml.
Fixed memory leak in IE with non-native event types
Removed check to prevent event from being fixed twice. Unfortunately, in IE this is sometimes necessary with its global event object. Binding both a mousedown and mousemove event is an example.