$.getJSON("test.php", function(json) {
... this function handles success
});
How do I handle errors for the current $.getJSON?
How do I handle errors for the current |
||||
|
I don't think there is a direct option available using getJSON, instead use the ajax method:
|
|||||
|
|
Check out the documentation for the It will let you create a GET request with an An example:
|
|||
|
|
|
Two options:
or you can switch to $.ajax and use the
|
|||
|
|
|
Why not do it like this instead so you can specifically handle the error
or you can use the global ajaxError |
|||
|
|
deferred.fail()for more info on the new methods. api.jquery.com/deferred.fail – calvinf Feb 2 '11 at 22:17