Search This Blog

Monday, June 20, 2011

<html>
<head>
<title>Special effects</title>
<script type=text/JavaScript>
var user_name="Sarav";
function welcome()
    {
    user_name=prompt("enter your name",user_name);
    if(confirm("confirm our name is "+user_name+" press cancel if false"))
    alert("welcome"+user_name+"!!!!!!!");
    else
    alert("welcome selfish giant");
    }
</script>
</head>
<body onLoad=welcome()>
</body>
</html>

No comments:

Post a Comment