Pass variables to a function, and use these variable values in the function : Function : Language Basics JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Language Basics » Function »

 

Pass variables to a function, and use these variable values in the function



<html
<head> 
<script type="text/javascript"
function myfunction(txt){ 
    alert(txt

</script> 
</head> 

<body
<form
<input type="button" onclick="myfunction('Java!')" value="Java"

<input type="button" onclick="myfunction('Java too!')" value="Java too"
</form

</body
</html



           
       



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Language Basics
» Function