Button Objects: Submit, Reset, and Button : JavaScript DHTML examples (example source code) » Form Control » Form HTML

JavaScript DHTML
C++
Java Products
Java Articles
JavaScript DHTML Home  »   Form Control   » [  Form HTML  ]   
 



Button Objects: Submit, Reset, and Button

Please note that some example is only working under IE or Firefox.



/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke 

ISBN: 067231763X
Publisher Sams CopyRight 2000

*/

<html>
<head>
<title>Online Registration</title>
<SCRIPT LANGUAGE="JavaScript">
     function showHelp() {
          helpWin = window.open("""Help""height=200,width=400")
          helpWin.document.write("<body><h2>Help on Registration</h2>")
          helpWin.document.write("1. Please enter your product information into the fields.<p>")
          helpWin.document.write("2. Press the Register button to submit your form.<p>")
          helpWin.document.write("3. Press the Clear button to clear the form and start again.<p>")
          helpWin.document.write("<p>")

          helpWin.document.write("<form><DIV ALIGN='CENTER'>")
          helpWin.document.write("<input type=button value='OK' onClick='window.close()'>")
          helpWin.document.write("</DIV></form></body>")
     }
</SCRIPT>
</head>
<body>
    <h1>Online Registration</h1>
    <form method="POST">
    <p>Please provide the following product information:</p>
    <blockquote>
    <pre>
    <em>Product name </em>
    <input type=text size=25 maxlength=256 name="ProductName">
    <em>Model </em>
    <input type=text size=25 maxlength=256 name="Product_Model">
    <em>Version number </em>
    <input type=text size=25 maxlength=256 name="Product_VersionNumber">
    <em>Operating system </em>
    <input type=text size=25 maxlength=256 name="Product_OperatingSystem">
    <em>   Serial number </em>
    <input type=text size=25 maxlength=256 name="Product_SerialNumber">
    </pre>
    </blockquote>
    <p>
    <input type=submit value="Register"
    <input type=reset value="Clear">
    <input type=button value="Help" onClick="showHelp()">
    </p>
</form>
</body>
Related examples in the same category
1.  Adjusting a CGI Submission Action
2.  Checking Elements on a Form
3.  Submitting Forms to the Server
4.  Variables in Hidden form
5.  Creating an Example Form for User Feedback
6.  Accessing the Elements of a Form
7.  Using the form.elements Array
8.  form.reset() and form.submit() Methods
9.  The onReset and onSubmit Event Handlers
10.   Passing a Form Object and Form Element to Functions
11.   Last-Minute Checking Before Form Submission
12.  A Form for Entering a URL
13.  Storing the last value using a Hidden object.
14.  Methods and Properties of the Submit Object
15.  Methods and Properties of the Reset Object
16.  Properties of the Hidden Object
17.  Methods and Properties of the Form Object
18.  Client-Side JavaScript Objects and HTML Tags That Create Instances of Them
19.  Using the document.forms Property








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.