X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fajax%2Fajax.js;h=9042a48d5df88952e50fc81ef3f23d3863cb881c;hb=e6ffe025033f82d752ec4966c6b12c49d8e1dc29;hp=e97fa07d3d411eb3fee3afc24610facf5950deb2;hpb=a4a6dfa6bd374904360c4e14c69319fe6ea3e180;p=jquery.git diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index e97fa07..9042a48 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -287,6 +287,7 @@ jQuery.extend({ } return jQuery.ajax({ + type: "GET", url: url, data: data, success: callback, @@ -417,7 +418,7 @@ jQuery.extend({ //timeout: 0, /** - * Set the timeout of all AJAX requests to a specific amount of time. + * Set the timeout in milliseconds of all AJAX requests to a specific amount of time. * This will make all future AJAX requests timeout after a specified amount * of time. * @@ -433,7 +434,7 @@ jQuery.extend({ * * @name $.ajaxTimeout * @type undefined - * @param Number time How long before an AJAX request times out. + * @param Number time How long before an AJAX request times out, in milliseconds. * @cat Ajax */ ajaxTimeout: function( timeout ) { @@ -519,7 +520,7 @@ jQuery.extend({ * response has changed since the last request. This is done by checking the * Last-Modified header. Default value is false, ignoring the header. * - * (Number) timeout - Local timeout to override global timeout, eg. to give a + * (Number) timeout - Local timeout in milliseconds to override global timeout, eg. to give a * single request a longer timeout while all others timeout after 1 second. * See $.ajaxTimeout() for global timeouts. *