1.2.2b
click here to add a description
click here to add a homepage
jQuery JavaScript Library — Read more
Tagging the 1.2.2b release.
Fixed #2037 where Opera would mis-state the value of 'display' after an innerHTML was done in some cases.
Updating changlog
Added code to remove the script tag on successful jsonp calls.
The extra & was getting gobbled, oops.
Added a fix for bug #2020 - if you want to do data: {callback: "?"}, do jsonp: "callback" instead.
Cleaned up mouseenter and mouseleave special events
Changed window.frameElement to window == top because of some access denied errors when the iframe wasn't same origin.
Added code so an iframe in IE won't count on doScroll to determine if the dom is ready. We will probably have to do more investigation on a better (and consistant) method for inside an iframe in IE.
Renaming variables to be more consistent
Adding data and removeData tests
Fixed #1781 for warnings created on load by FF javascript.options.strict == true.
Added feature #1934 by allowing script.charset to be set through an optional 'scriptCharset' ajax option.
new special events api, ready is now a first class event that you can use bind, unbind or the ready helper, two new events: mouseenter and mouseleave, the hover helper method now uses mouseenter and mouseleave, bind and unbind can now take a space sperated list of event types
Don't remove test directory on clean
Fixed #2046 by forcing the dataType to 'html' in the .load() function.
Added an extra try block to handle FF 3 x-domain requests. (Bug #1557)
Added a test case for $("<option>test</option>")[0].selected (bug #2050).
Added some improvements to changes made in [4143] for #1854.
Fixed #1854 by using wizzud's suggestion. The only real difference is the code is only called when there is more than a single selector. So there should be no speed decrease in the current working cases. Only additional functionality for cases that used to fail.
Getting the width and height of the document now returns the correct value in all browsers. It even works around the scrollWidth == offsetWidth bug in Firefox thanks to wizzud.
Fixed #1750 by adding a url that starts with "//" and is a dataType "script" will now use a cross domain load the same as urls that start with "http".
Added more unit tests for offset. Fixed an offset issue relating to table header cells in Opera
Fixed a bug in clone where it wouldn't work on an XML node in IE. Also added unit test for it.
Fix #1987 by only doing remote <script> type ajax with GET requests. All other types will be passed on to XMLHttpRequest.
Greatly reduced the complexity of the width/height methods. This also fixes #2009, #1870, #1796, #1843, #1839, #1818, #1613, #1415 and #1629
Fix for #2032
Fixed #1959 by postponing ALL script evaluations till the html insertion is done. Before the code would immediately execute any scripts that weren't in subelements if no subelements prior had scripts in them (i.e. once any script was postponed they all were). This could cause inconsistent behavior. Since, at this time, we have to postpone some scripts it makes more sense to postpone them all.
Added a change that triples the speed of all uses of $(...). For example $(DOMElement) was 38ms, is now 13ms.
Fixed clone so that it now properly copies changes to the innerHTML in IE. Unfortunately, IE stores some modifications to some attributes only as a property and they are still not copied properly. This is documented in ticket #1836.