<html>
<head>
<script src="../../ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("img").error(function(){
$("img").replaceWith("<p>Error loading image!</p>");
});
$("button").click(function(){
$("img").error();
});
});
</script>
</head>
<body>
<img src="img_pulpitrock.jpg" alt="Pulpit rock" width="284" height="213"><br>
<button>Trigger error event for the image</button>
</body>
<!-- Mirrored from www.w3schools.com/jquery/tryit.asp?filename=tryjquery_event_error_trigger by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:33:00 GMT -->
</html>