Button Objects: Submit, Reset, and Button : Form HTML « Form Control « JavaScript DHTML






Button Objects: Submit, Reset, and Button

 

<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. step 1.<p>")
          helpWin.document.write("2. step 2.<p>")
          helpWin.document.write("3. step 3.<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">
    <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
20.Use hidden field to store data