Fixed docs for $.ajax' processData option

This commit is contained in:
Jörn Zaefferer 2006-12-13 19:04:36 +00:00
parent ed37ca66e5
commit 3e165ae5ab

View file

@ -502,10 +502,10 @@ jQuery.extend({
* (String) contentType - When sending data to the server, use this content-type, * (String) contentType - When sending data to the server, use this content-type,
* default is "application/x-www-form-urlencoded", which is fine for most cases. * default is "application/x-www-form-urlencoded", which is fine for most cases.
* *
* (Boolean) processData - By default, data passed in as an object other as string * (Boolean) processData - By default, data passed in to the data option as an object
* will be processed and transformed into a query string, fitting to the default * other as string will be processed and transformed into a query string, fitting to
* content-type "application/x-www-form-urlencoded". If you want to send DOMDocuments, * the default content-type "application/x-www-form-urlencoded". If you want to send
* set this option to false. * DOMDocuments, set this option to false.
* *
* (Boolean) async - By default, all requests are send asynchronous (set to true). * (Boolean) async - By default, all requests are send asynchronous (set to true).
* If you need synchronous requests, set this option to false. * If you need synchronous requests, set this option to false.