Mega Code Archive

 
Categories / JavaScript Tutorial / Form
 

Select form

The form property holds all the data of the form in which the select box is contained. This allows a developer to obtain specific information about the form in which the select box is located. <html>     <head>     <script language="JavaScript">     <!--     function openWin(){       var formData = document.myForm.mySelect.form;       var myWin = open("", "","width=450,height=200");          myWin.document.write("The name of the form is: " + formData.name + "<br>");       myWin.document.write(formData.mySelect.selectedIndex + "<br>");       myWin.document.write(formData.elements[1].name + "<br>");       myWin.document.close();     }     -->     </script>     </head>     <body>     <form name="myForm">       <select name="mySelect" multiple>         <option value=A>AA</option>         <option value=B>BB</option>         <option value=C>CC</option>         <option value=D>DD</option>       </select>     <input type=BUTTON value="Click to Process" name="myButton"             onClick="openWin()">     </form>     </body>     </html>