Fixed docs for load; Added the response as third paramter for load callback (partly fixing bug #337)

This commit is contained in:
Jörn Zaefferer 2006-11-11 12:08:48 +00:00
parent 7ff54c4034
commit d0eda6827f

View file

@ -64,8 +64,8 @@ jQuery.fn.extend({
* @name load * @name load
* @type jQuery * @type jQuery
* @param String url The URL of the HTML file to load. * @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 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. * @param Function callback A function to be executed whenever the data is loaded (parameters: responseText, status and reponse itself).
* @cat AJAX * @cat AJAX
*/ */
load: function( url, params, callback, ifModified ) { load: function( url, params, callback, ifModified ) {
@ -107,9 +107,9 @@ jQuery.fn.extend({
// Execute all the scripts inside of the newly-injected HTML // Execute all the scripts inside of the newly-injected HTML
.evalScripts() .evalScripts()
// Execute callback // Execute callback
.each( callback, [res.responseText, status] ); .each( callback, [res.responseText, status, res] );
} else } else
callback.apply( self, [res.responseText, status] ); callback.apply( self, [res.responseText, status, res] );
} }
}); });
return this; return this;