$.ajax({
url: "wrong_url.json",
method: "GET",
error: function(xhr, status, error){
console.log("Error: " + error);
}
});
$.ajax({
url: "wrong_url.json",
method: "GET",
error: function(xhr, status, error){
console.log("Error: " + error);
}
});
Leave a Reply