jQuery ajaxError() Method
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:
|
Try it Yourself - Examples
Use the xhr and options parameter
How to use the options parameter to get a more useful error message.