Click here to Skip to main content
15,881,757 members
Articles / Programming Languages / Javascript
Tip/Trick

Use ajaxSetup to Configure Error Handling on Ajax Calls in jQuery

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
25 Jun 2010CPOL 16K   1  
How to call a function when an error occured while calling a page using $.getJSON
$.getJSON method of jQuery does not provide any access to a method in case an error occurs while calling a page asynchronously.

The common use of getJSON method is:

$.getJSON(<<page name>>, <<paremeters>>, <<function to call on success>>);


In case any error occurs while calling the requested page, it does not provide any notification about the failed request.

In order to raise an event in case any error occurs, call $.ajaxSetup before $.getJSON.

$.ajaxSetup provides the facility to predefine ajax settings which will be followed with all subsequent Ajax calls.

$.ajaxSetup can be used like this:

$.ajaxSetup({ error:myfunc });

function myfunc(XMLHttpRequest, textStatus, errorThrown)
{
 alert('error');
}

$.getJSON(<<page name>>, <<paremeters>>, <<function to call on success>>);


Now, when any occurs while calling the requested page myfunc method will be executed.
----------------------------

In case you are not bound to using $.getJSON you can use other methods provided by jQuery which also supports the onError calls.

It's important to note that make of the shortcut Ajax calls (such as post()) do not include error handling by default. This technique will allow you to handle errors for any such call.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Software Technology Parks of India-Lucknow
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --