Report url, status and status text after fail - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:ajaxError

Description

Report url, status and status text after fail

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $(document).ajaxError(function(e, xhr, opt){
        console.log("Error requesting " + opt.url + ": " + xhr.status + " " + xhr.statusText);
    });//from  w  ww  .j  ava 2s.  c  om
    $("button").click(function(){
        $("div").load("wrongfile.txt");
    });
});
</script>
</head>
<body>

<div><h2>Let AJAX change this text</h2></div>

<button>Change Content</button>

</body>
</html>

Related Tutorials