Search This Blog

Thursday, April 22, 2010

java script message box

<html>
<head>
<script type="text/javascript">
function show_alert()
{
alert("Hi, How r u");
}
</script>
</head>
<body>

<input type="button" onclick="show_alert()" value="Click Here" />

</body>
</html>

No comments:

Post a Comment