<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$.ajax({url: "wrongfile.txt", error: function(xhr){
alert("An error occured: " + xhr.status + " " + xhr.statusText);
}});
});
});
</script>
</head>
<body>
<p>Artists</p>
<div></div>
<button>Get CD info</button>
</body>
</html>