.on( "ajaxError", handler )Returns: jQuery
Description: Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.
-
version added: 1.7.on( "ajaxError", handler )
-
"ajaxError"Type: stringThe string
"ajaxError"
. -
handlerThe function to be invoked.
-
ajaxError
event. For the deprecated .ajaxError()
method, see .ajaxError()
.
ajaxError
event. Any and all registered ajaxError
handlers are executed at this time. Note: This handler is not called for cross-domain script and cross-domain JSONP requests.
1
2
3
|
|
1
2
3
|
|
1
2
3
|
|
ajaxError
handlers are invoked, regardless of what Ajax request was completed. To differentiate between the requests, use the parameters passed to the handler. Each time an ajaxError
handler is executed, it is passed the event object, the jqXHR
object (prior to jQuery 1.5, the XHR
object), and the settings object that was used in the creation of the request. When an HTTP error occurs, the fourth argument (thrownError
) receives the textual portion of the HTTP status, such as "Not Found" or "Internal Server Error." For example, to restrict the error callback to only handling events dealing with a particular URL:
1
2
3
4
5
|
|
Additional Notes:
-
As of jQuery 1.9, all the handlers for the jQuery global Ajax events, including those added with
.on( "ajaxError", ... )
, must be attached todocument
. -
If
$.ajax()
or$.ajaxSetup()
is called with theglobal
option set tofalse
, theajaxError
event will not fire.
Example:
1
2
3
|
|