From 2844f4f4bc0d17592ac474f444cde0d0fef39469 Mon Sep 17 00:00:00 2001 From: Ian MacIntosh Date: Fri, 21 Nov 2014 11:30:25 -0500 Subject: [PATCH] jQuery.ajax(): Add undocumented statusText 'nocontent' See https://github.com/jquery/jquery/blob/4e7f34f6296111f7f91d621397dfb02c6bf4c41f/src/ajax.js#L707 --- 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 7f8b7d3b..ea8f6307 100644 --- a/entries/jQuery.ajax.xml +++ b/entries/jQuery.ajax.xml @@ -32,7 +32,7 @@ - A function to be called when the request finishes (after success and error callbacks are executed). The function gets passed two arguments: The jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object and a string categorizing the status of the request ("success", "notmodified", "error", "timeout", "abort", or "parsererror"). As of jQuery 1.5, the complete setting can accept an array of functions. Each function will be called in turn. This is an Ajax Event. + A function to be called when the request finishes (after success and error callbacks are executed). The function gets passed two arguments: The jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object and a string categorizing the status of the request ("success", "notmodified", "nocontent", "error", "timeout", "abort", or "parsererror"). As of jQuery 1.5, the complete setting can accept an array of functions. Each function will be called in turn. This is an Ajax Event. An object of string/regular-expression pairs that determine how jQuery will parse the response, given its content type.