addEventListener("error", myFunction); - Javascript DOM Event

Javascript examples for DOM Event:addEventListener

Description

The onerror event is triggered if an error occurs while loading an external document or image.

Summary

Bubbles No
Cancelable No
Supported HTML tags: <img>, <input type="image">, <object>, <link>, and <script> <audio> and <video>

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<img id="myImg" src="http://java2s.com/resources/a.png">

<p id="demo"></p>

<script>
document.getElementById("myImg").addEventListener("error", myFunction);

function myFunction() {//from   ww w  .  ja  v a 2  s.  c  o  m
    document.getElementById("demo").innerHTML = "The image could not be loaded.";
}
</script>

</body>
</html>

Related Tutorials