<html>
<head>
<script>
function myFunction() {
alert("Image loaded: " + document.getElementById("myImg").complete);
}
</script>
</head>
<body onload="myFunction()">
<p>This property returns true if the image is finished loaded, and false if not.</p>
<img id="myImg" src="compman.gif" alt="Computerman" width="107" height="98">
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_img_complete2 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:16:53 GMT -->
</html>