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