Monday, January 13, 2014

Example of document object that prints name with welcome message.

<html>
<body>
<script type="text/javascript">
function printer()
{
var name=document.index.mahi.value;
alert("Welcome: "+name);
}
</script>
<form name="index">
Enter Name:
<input type="text" name="mahi"/>
<input type="button" onclick="printer()" value="Print Name"/>
</form>
</body>
</html>

No comments:

Post a Comment