Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery ajaxError() Method

❮ jQuery AJAX Methods

Example

Trigger an alert box when an AJAX request fails:

$(document).ajaxError(function(){
  alert("An error occurred!");
});
Try it Yourself »

Definition and Usage

The ajaxError() method specifies a function to be run when an AJAX request fails.

Note: As of jQuery version 1.8, this method should only be attached to document.


Syntax

$(document).ajaxError(function(event,xhr,options,exc))

Parameter Description
function(event,xhr,options,exc) Required. Specifies the function to run if the request fails
Additional parameters:
  • event - contains the event object
  • xhr - contains the XMLHttpRequest object
  • options - contains the options used in the AJAX request
  • exc - contains the JavaScript exception, if one occurred

Try it Yourself - Examples

Use the xhr and options parameter
How to use the options parameter to get a more useful error message.


❮ jQuery AJAX Methods