Edit This Code:
<!DOCTYPE html>
<html>
<head>
<script>
function loadImage() {
    alert("Image is loaded");
}
</script>
</head>
<body>

<img src="w3javascript.gif" onload="loadImage()" width="100" height="132">

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy