diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-11-11 12:08:48 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-11-11 12:08:48 +0000 |
commit | d0eda6827f9bfcf88906e4e45f357cb40e425a05 (patch) | |
tree | 17be25c5bf0df297b0f51b6aeaeb3ea12353ade3 /src/ajax | |
parent | 7ff54c403435bbb9f0e66caf6e5f6a663acc543d (diff) | |
download | jquery-d0eda6827f9bfcf88906e4e45f357cb40e425a05.tar.gz jquery-d0eda6827f9bfcf88906e4e45f357cb40e425a05.zip |
Fixed docs for load; Added the response as third paramter for load callback (partly fixing bug #337)
Diffstat (limited to 'src/ajax')
-rw-r--r-- | src/ajax/ajax.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index 129d47260..eee3f06f2 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -64,8 +64,8 @@ jQuery.fn.extend({ * @name load * @type jQuery * @param String url The URL of the HTML file to load. - * @param Object params A set of key/value pairs that will be sent to the server. - * @param Function callback A function to be executed whenever the data is loaded. + * @param Object params A set of key/value pairs that will be sent as data to the server. + * @param Function callback A function to be executed whenever the data is loaded (parameters: responseText, status and reponse itself). * @cat AJAX */ load: function( url, params, callback, ifModified ) { @@ -107,9 +107,9 @@ jQuery.fn.extend({ // Execute all the scripts inside of the newly-injected HTML .evalScripts() // Execute callback - .each( callback, [res.responseText, status] ); + .each( callback, [res.responseText, status, res] ); } else - callback.apply( self, [res.responseText, status] ); + callback.apply( self, [res.responseText, status, res] ); } }); return this; |