10aa9eaefd662c7678f9d1540d4ba6f3404509da
[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  - Improved event fixing, using less browser and more object detection
11  - Fixed ID with context selectors (eg. div#id doesn't ignore "div" anymore)
12  - Improved jQuery.merge to avoid unnecessary loops
13  - Fixed docs for html(): Now mentions that is not available for XML documents
14  - Improved docs for blur() and focus(), mentioning the difference between calling the jQuery method and the DOM method
15
16 1.0.4
17 -----
18
19  - Tons of bug fixes
20  - Extensions to $.ajax: $.ajax accepts additonal options: beforeSend, async and processData; returns XMLHttpRequest to allow manual aborting of requests, see docs for details
21  - 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
22  - New global ajax handler: ajaxSend - called before an ajax request is sent
23  - Extensions to global ajax handlers: ajaxSend, ajaxSuccess, ajaxError and ajaxComplete get XMLHttpRequest and settings passed as arguments
24  - Extensions to event handling: pageX and pageY are available x-browser (IE does not provide native pageX/Y)
25  - Improved docs: $(String) method has now two seperate descriptions, one for selecting elements, one for creating (html on-the-fly)
26  - 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)
27  - Added note to attr(String, Object) about issues with setting the name property on input elements
28  - Seperated internal stuff from get() into set()
29  - Merged the two API examples for each() into one more precise example
30  - Improved docs for $.browser and added docs for $.boxModel
31  - Docs for the jQuery constructor $() were improved: There is now $(String expression[, Object context]) and $(String html)