Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
script
>
function
mymessage() {
alert(
"This message was triggered from the onload event"
);
}
<
/script
>
<
/head
>
<
body
onload
="mymessage()"
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <script> function mymessage() { alert("This message was triggered from the onload event"); } </script> </head> <body onload="mymessage()"> </body> </html>
Result:
Privacy Policy