Documentation for $.ajaxSetup
[jquery.git] / newandnoteworthy.txt
1 New and Noteworthy
2 -----------------
3
4 1.0.5/1.1
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 fixingFixed event fixing (Opera provides event.srcElement, must ignore it if target is available; only create pageX if clientX is available)
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  - Implemented a better error handling for ajax requests. Exceptions caused by dropping connections are now handled, too.
16  - Added global settings for AJAX (in addition to timeout), use $.ajaxSetup() to modify them
17
18 1.0.4
19 -----
20
21  - Tons of bug fixes
22  - Extensions to $.ajax: $.ajax accepts additonal options: beforeSend, async and processData; returns XMLHttpRequest to allow manual aborting of requests, see docs for details
23  - 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
24  - New global ajax handler: ajaxSend - called before an ajax request is sent
25  - Extensions to global ajax handlers: ajaxSend, ajaxSuccess, ajaxError and ajaxComplete get XMLHttpRequest and settings passed as arguments
26  - Extensions to event handling: pageX and pageY are available x-browser (IE does not provide native pageX/Y)
27  - Improved docs: $(String) method has now two seperate descriptions, one for selecting elements, one for creating (html on-the-fly)
28  - 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)
29  - Added note to attr(String, Object) about issues with setting the name property on input elements
30  - Seperated internal stuff from get() into set()
31  - Merged the two API examples for each() into one more precise example
32  - Improved docs for $.browser and added docs for $.boxModel
33  - Docs for the jQuery constructor $() were improved: There is now $(String expression[, Object context]) and $(String html)