Thursday, September 1, 2011

Example 3. Function with Arguments

<html>

<head>

<script language="JavaScript">

function myfunction(txt)

{

alert(txt)

}

</script>

</head>

<body>

<form>

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

</form>

<p>By pressing the button, a function with an argument will be called. The
function will alert this argument.</p>

</body>

</html>



 

No comments: