JavaScript script head

04:20 0 Comments A+ a-

<html>
<head>
<script type="text/javascript">
function message()
{
alert("This alert box was called with the onload event");
}
</script>
</head>

<body onLoad="message()">

</body>
</html>

Result