HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <body> <h1>jQuery ajaxError() Method</h1> <p>Click on the button and check your console.</p> <button>Click Me</button> <script> $(document).ready(function(){ $("button").click(function(){ $.getJSON("no-data.json", function(data){ console.log(data); }); }); $(document).ajaxError(function() { alert("An error occured!."); }); }); </script> <p><strong>Note</strong>: We don't have no-data.json file.</p> </body> </html>
OUTPUT
×

Save as Private