Thursday, September 1, 2011

Example 2. Creating Functions in JavaScript

<html>

<head>

<script language="JavaScript">

function myfunction()

{

alert("HELLO")

}

</script>

</head>

<body>

<form>

<input type="button" onclick="myfunction()" value="Call function">

</form>

<p>By pressing the button, a function will be called. The function will alert a
message.</p>

</body>

</html>



 




No comments: