HTML Tags JavaScript Tutorial

< html>

    Image Error Test
    
        function handleLoad() {
            document.images[0].onerror = function () {
                alert("An error occurred loading the image.");
            };
            document.images[0].src = "doesNotExist.gif";
        }
    


    

The image below attempts to load a file that doesn't exist.