Define a function
|
|
<html> <head> <title>Function Demo</title>
<script language="javascript" type="text/javascript"> <!--
function greetVisitor() { var myName = prompt("Name.", ""); alert("Welcome " + myName + "!") }
//--> </script>
</head> <body>
<h1>Function Demo</h1>
</body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
|