Edit This Code:
See Result »
<
!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
>
<!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:
Privacy Policy