Text.form : Text Object « Form « JavaScript Tutorial






The form property holds all the data of the form in which the text box is contained.

This allows a developer to obtain specific information about the form in which the text box is located.

<html>
    <head>
    <script language="JavaScript">
    <!--
    function openWin(){
      var formData = document.myForm.myText.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="myButton"
             onClick="openWin()">
    </form>
    </body>
    </html>








10.14.Text Object
10.14.1.Text
10.14.2.Text.blur()
10.14.3.Text.defaultValue
10.14.4.Text.focus()
10.14.5.Text.form
10.14.6.Text.name
10.14.7.Text.onBlur
10.14.8.Text.onFocus
10.14.9.Text.onSelect
10.14.10.Text.select()
10.14.11.Text.type
10.14.12.Text.value