“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<head>
<script>
function loadImage()
{
alert("Image is loaded");
}
</script>
</head>
<body>
<img src="logo.png" onload="loadImage()" width="336" height="36">
</body>
</html>