Add onerror handler to image element within document element array (IE) : img « HTML Tags « JavaScript Tutorial






<html>
<head>
    <title>Image Error Test</title>
    <script type="text/javascript">
        function handleLoad() {
            document.images[0].onerror = function () {
                alert("An error occurred loading the image.");
            };

            document.images[0].src = "doesNotExist.gif";
        }
    </script>
</head>
<body onload="handleLoad()">
    <P>The image below attempts to load a file that doesn't exist.</p>
    <img/>
</body>
</html>








21.9.img
21.9.1.Image
21.9.2.Image.border
21.9.3.Image.complete
21.9.4.Image.height
21.9.5.Image.hspace
21.9.6.Image.lowsrc
21.9.7.Image.name
21.9.8.Image.src
21.9.9.Image.vspace
21.9.10.Image.width
21.9.11.Change link image in mouse in and mouse out
21.9.12.Change image align
21.9.13.Change image title
21.9.14.Image substitute
21.9.15.Image load onerror event (IE)
21.9.16.Add onerror handler to image element within document element array (IE)
21.9.17.Replace an Image under mouse event (onMouseOver, onMouseOut)
21.9.18.Slide Show
21.9.19.Change vspace for image