From e68e9c3fcc9cde9658b384a4bc2264373b00ecfb Mon Sep 17 00:00:00 2001 From: zyphlar Date: Fri, 31 Aug 2018 17:59:20 -0700 Subject: [PATCH] Fix #1022 Trying to fix https://github.com/jquery/api.jquery.com/issues/1022 --- entries/jQuery.ajax.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entries/jQuery.ajax.xml b/entries/jQuery.ajax.xml index 80157d28..c6a523ba 100644 --- a/entries/jQuery.ajax.xml +++ b/entries/jQuery.ajax.xml @@ -160,7 +160,7 @@ $.ajax({ } }); -

If the request is successful, the status code functions take the same parameters as the success callback; if it results in an error (including 3xx redirect), they take the same parameters as the error callback.

+

If the request is successful, the status code functions take the same parameters as the success callback; if it results in an error (including 3xx redirects to another domain), they take the same parameters as the error callback. (3xx redirects to the same domain are generally handled transparently.)