Mega Code Archive

 
Categories / JavaScript DHTML / Language Basics
 

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>