I have have plenty of AJAX calls within the application, each of them have it's own error handler.
I'm looking for a way to avoid the error handler for a certain status.
When using the $.ajaxError
, it's being called AFTER the handler of the individual AJAX was already executed.
Is there a way to abort executing the AJAX error event, in case of a specific status?
Thanks,
Tal.