jQuery load() load xml and handle error

Introduction

Handle ajax error when loading xml data

View in separate window

<!DOCTYPE html>
<html>
<head>
<script 
 src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>/*  ww w . j av  a2s .  c  o m*/
<script>
$(document).ready(function(){
  $("button").click(function(){
    $("div").load("wrongname.xml",function(response, status, xhr){
      if (status == "success"){
        $("div").html("<ol></ol>");
        $(response).find("artist").each(function(){
          let item_text = $(this).text();
          $('<li></li>').html(item_text).appendTo('ol');
        });
      } else {
        $("div").html("An error occured: <br>" + xhr.status + " " + xhr.statusText)
      }
    });
  });
});
</script>
</head>
<body>
<div></div>
<button>Get</button>
</body>
</html>



PreviousNext

Related