How to display a message box when page opens

If you want to show some message box or a alert window when user at the first open your page then the below Javascript code is for you. 

The below Javascript code will open an alert box when user comes first time  on your webpage.

Code:

<script language="javascript" type="text/javascript">
alert("You are Welcome to my site")
</script>

Just paste the below Javascript code within <head> and </head> tags on your webpage as shown below.And change message according to your need.


<html>
<head>
<script language="javascript" type="text/javascript">
alert("You are Welcome to my site")
</script>
</head>
</html>
Tags: , , , ,

Join Us!