Javascript examples for DOM HTML Element:Image
Replacing images using onerror for <img> element
<html> <head> <script> function imgError(image) {/*from w ww .j ava 2 s . c om*/ 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>