Snippets

Here is your code snippet

Code


Alert box on page loading

Alert box on page loading

<!--Insert between <head> </head> tags. -->

<script language="JavaScript">
<!-- Hide the script from old browsers --
function loadalert ()
{
alert("alert message")
}
// --End Hiding Here -->
</script>

<!--Modify <body> tag. -->

<body onLoad="loadalert()">