jQuery.merge speedup, bug#444
[jquery.git] / newandnoteworthy.txt
1 New and Noteworthy
2 -----------------
3
4 1.0.5
5 -----
6  
7  - Fixed synchronous requests
8  - $.get, $.getIfModified, $.post, $.getScript and $.getJSON now all pass through the XMLHttpRequest as returned by $.ajax
9  - Improved AJAX docs (eg. more examples for $.ajax
10
11 1.0.4
12 -----
13
14  - Tons of bug fixes
15  - Extensions to $.ajax: $.ajax accepts additonal options: beforeSend, async and processData; returns XMLHttpRequest to allow manual aborting of requests, see docs for details
16  - AJAX module: the public $.ajax API is now used internally (for $.get/$.post etc.); loading scripts works now much more reliable on all browers except Safari
17  - New global ajax handler: ajaxSend - called before an ajax request is sent
18  - Extensions to global ajax handlers: ajaxSend, ajaxSuccess, ajaxError and ajaxComplete get XMLHttpRequest and settings passed as arguments
19  - Extensions to event handling: pageX and pageY are available x-browser (IE does not provide native pageX/Y)
20  - Improved docs: $(String) method has now two seperate descriptions, one for selecting elements, one for creating (html on-the-fly)
21  - FX module: Most inline stlyes added by animations are now removed when the animation is complete, eg. height style when animating height (exception: display styles)
22  - Added note to attr(String, Object) about issues with setting the name property on input elements
23  - Seperated internal stuff from get() into set()
24  - Merged the two API examples for each() into one more precise example
25  - Improved docs for $.browser and added docs for $.boxModel
26  - Docs for the jQuery constructor $() were improved: There is now $(String expression[, Object context]) and $(String html)