Edit This Code:
<!DOCTYPE html>
<html>
<head>

<script>
function mymessage() {
    alert("This message was triggered from the onload event");
}
</script>
</head>

<body onload="mymessage()">
</body>

</html>


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