Submit.form : submit button : Form JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Form » submit button »

 

Submit.form







The form property provides access to all the data of the form in which the submit button is located.












<html>
    <head>
    <script language="JavaScript">
    <!--
    function openWin(){
      var formData = document.myForm.mySubmit.form;
      var myWin = open("""","width=450,height=200");

      myWin.document.write("The name of the form is: " + formData.name + "<br>");
      myWin.document.write(formData.myText.value + "<br>");
      myWin.document.write(formData.elements[1].name + "<br>");
      myWin.document.close();
    }
    -->
    </script>
    </head>
    <body>
    <form name="myForm">
      <input type=TEXT value="Hello, World!" name="myText">
      <input type=BUTTON value="Click to Process" name="mySubmit" onClick="openWin()">
    </form>
    </body>
    </html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Form
» submit button