From: John Resig Date: Wed, 3 Jan 2007 15:16:14 +0000 (+0000) Subject: Updated the list of whats changed. X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=3736ed011b7df5cae9751ef94c16c8d7164d0e58;p=jquery.git Updated the list of whats changed. --- diff --git a/newandnoteworthy.txt b/newandnoteworthy.txt index 89f757a..10ab7ea 100644 --- a/newandnoteworthy.txt +++ b/newandnoteworthy.txt @@ -5,6 +5,10 @@ New and Noteworthy ----- - 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 - $.get, $.getIfModified, $.post, $.getScript and $.getJSON now all pass through the XMLHttpRequest as returned by $.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 nth-child selectors to start on the right number - 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 - 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.