diff options
| author | Luke Plant <L.Plant.98@cantab.net> | 2009-09-10 16:17:56 +0000 |
|---|---|---|
| committer | Luke Plant <L.Plant.98@cantab.net> | 2009-09-10 16:17:56 +0000 |
| commit | 49b9470dca446c5bee6518310a9739aa424edcd3 (patch) | |
| tree | a4f19af9bd8fc69b736f936f51c39db64f48923e /docs/ref | |
| parent | 18a67e1069fa9c415192b7ce2c14b90d0285e281 (diff) | |
Fixed #11071 - update is_ajax() docs.
Thanks timo.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11490 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/request-response.txt | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 8701c76235..9df156a6f2 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -232,16 +232,7 @@ Methods Returns ``True`` if the request was made via an ``XMLHttpRequest``, by checking the ``HTTP_X_REQUESTED_WITH`` header for the string - ``'XMLHttpRequest'``. The following major JavaScript libraries all send this - header: - - * jQuery - * Dojo - * MochiKit - * MooTools - * Prototype - * YUI - + ``'XMLHttpRequest'``. Most modern JavaScript libraries send this header. If you write your own XMLHttpRequest call (on the browser side), you'll have to set this header manually if you want ``is_ajax()`` to work. |
