Creating an Example Form for User Feedback : JavaScript DHTML examples (example source code) » Form Control » Form HTML

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



Creating an Example Form for User Feedback

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

*/

<!-- Web Page for controlling an automated toaster
  -- Note: Since we don't really have an automated toaster
  --       mail the results back to the developer -->
<html>
<head>
<title>The Amazing Automated Toaster</title>
<script language="JavaScript">
<!-- script start
function setStatus(str)
{
     window.status = str;
     return true;
}
var greeting="Hello! How about some nice toasted bread products!";
window.defaultStatus = greeting;
// script end -->
</script>
</head>
<body>
<h1>The Amazing Automated Toaster</h1>
<form action="mailto:your_mail_ID" method="post">
<font size=5>Bread Product:</font>
<select name="product"
     onFocus="setStatus('Select desired bread product from list.')"

     onBlur="setStatus('')">
<option>Bread
<option>Waffle
<option>Bagel
<option>Roll
<option>Muffin
<option>Croissant
<option>Scone
</select>
<br>
<font size=5>Quantity:</font>
<input type="text" name="quantity" value="1" size=maxlength=4
     onFocus="setStatus('Enter quantity of bread products desired (1-1000).')"
     onBlur="setStatus('')">
<br>
<font size=5>Toastiness:</font>
<input type="text" name="toastiness" value="50" size=maxlength=3
     onFocus="setStatus('Enter degree of toastiness from 0-100 (0=untoasted 100=burnt).')"
     onBlur="setStatus('')">
<br>
<font size=5>Buttered:</font>
<font size=5>Yes</font>
<input type="radio" name="buttered" value="yes" checked
     onClick="setStatus('Do you want butter on the bread product?')">
<font size=5>No</font>
<input type="radio" name="buttered" value="no"
     onClick="setStatus('Do you want butter on the bread product?')">
<hr>
<input type="submit" value="Start Toaster">
<input type="reset">
</form>
</body>
</html>
Related examples in the same category
1.  Adjusting a CGI Submission Action
2.  Button Objects: Submit, Reset, and Button
3.  Checking Elements on a Form
4.  Submitting Forms to the Server
5.  Variables in Hidden form
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.