Updated the list of whats changed.

This commit is contained in:
John Resig 2007-01-03 15:16:14 +00:00
parent af9e5d45fc
commit 3736ed011b

View file

@ -5,6 +5,10 @@ New and Noteworthy
----- -----
- Massive speed-ups (4x-10x) in the selector engine - Massive speed-ups (4x-10x) in the selector engine
- jQuery is no longer destructive. Doing var a = $("a"); a.find("span"); does not change the original "a" variable.
- Removed .oneEvent() and .unEvent() helper methods.
- Added new .one( "type", fn ) method
- Performming .click(), .blur(), .focus(), .submit() will actually trigger the browsers default action for those events.
- Fixed synchronous requests - Fixed synchronous requests
- $.get, $.getIfModified, $.post, $.getScript and $.getJSON now all pass through the XMLHttpRequest as returned by $.ajax - $.get, $.getIfModified, $.post, $.getScript and $.getJSON now all pass through the XMLHttpRequest as returned by $.ajax
- Improved AJAX docs (eg. more examples for $.ajax) - Improved AJAX docs (eg. more examples for $.ajax)
@ -12,6 +16,7 @@ New and Noteworthy
- Fixed ID with context selectors (eg. div #id doesn't ignore "div" anymore) - Fixed ID with context selectors (eg. div #id doesn't ignore "div" anymore)
- Fixed nth-child selectors to start on the right number - Fixed nth-child selectors to start on the right number
- Improved jQuery.merge to avoid unnecessary loops - Improved jQuery.merge to avoid unnecessary loops
- Removed the (undocumented) .find( "selector", fn ) for all destructive methods.
- Fixed docs for html(): Now mentions that is not available for XML documents - Fixed docs for html(): Now mentions that is not available for XML documents
- Improved docs for blur() and focus(), mentioning the difference between calling the jQuery method and the DOM method - Improved docs for blur() and focus(), mentioning the difference between calling the jQuery method and the DOM method
- Implemented a better error handling for ajax requests. Exceptions caused by dropping connections are now handled, too. - Implemented a better error handling for ajax requests. Exceptions caused by dropping connections are now handled, too.