diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-11-11 12:11:37 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-11-11 12:11:37 +0000 |
commit | 93c1340d5504264584d8837b87c1b58dc8a8ac50 (patch) | |
tree | 022c1979be079e670b4ef7a1811951a22ed26cc8 /src/ajax | |
parent | d0eda6827f9bfcf88906e4e45f357cb40e425a05 (diff) | |
download | jquery-93c1340d5504264584d8837b87c1b58dc8a8ac50.tar.gz jquery-93c1340d5504264584d8837b87c1b58dc8a8ac50.zip |
Fixed doc for $.ajax data option
Diffstat (limited to 'src/ajax')
-rw-r--r-- | src/ajax/ajax.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index eee3f06f2..4d6dc6faa 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -597,7 +597,8 @@ jQuery.extend({ * * (String) url - The URL of the page to request. * - * (String) data - A string of data to be sent to the server (POST only). + * (String) data - Data to be sent to the server. If converted to a query + * string, if not already a string. Is appended to the url for GET-requests. * * (String) dataType - The type of data that you're expecting back from * the server (e.g. "xml", "html", "script", or "json"). |