Updated the list of whats changed.
authorJohn Resig <jeresig@gmail.com>
Wed, 3 Jan 2007 15:16:14 +0000 (15:16 +0000)
committerJohn Resig <jeresig@gmail.com>
Wed, 3 Jan 2007 15:16:14 +0000 (15:16 +0000)
newandnoteworthy.txt

index 89f757a..10ab7ea 100644 (file)
@@ -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.