ExampleTrigger an alert box when an AJAX request fails:
Try it yourself » |
The ajaxError() method specifies a function to be run when an AJAX request fails.
$(selector).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.