Javascript examples for DOM Event:addEventListener
The onerror event is triggered if an error occurs while loading an external document or image.
Bubbles | No |
---|---|
Cancelable | No |
Supported HTML tags: | <img>, <input type="image">, <object>, <link>, and <script> <audio> and <video> |
<!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>