Javascript examples for DOM Event:onerror
Handle element onerror event
<html> <head> <script> function imgError(image) {/*from www .ja v a2s. com*/ image.onerror = ""; image.src = "http://www.java2s.com/style/download.png"; return true; } </script> </head> <body> <img src="image.gif" onerror="imgError(this);"> </body> </html>