Creating an Example Form for User Feedback : Form HTML : Form Control JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Form Control » Form HTML »

 

Creating an Example Form for User Feedback




<html>
<head>

<script language="JavaScript">
<!-- 
function setStatus(str)
{
     window.status = str;
     return true;
}
   
var greeting="Hello! ";
window.defaultStatus = greeting;
// script end -->
</script>
</head>
   
<body>
<form action="mailto:your_mail_ID" method="post">
<select name="product" onFocus="setStatus('message.')" onBlur="setStatus('')">
<option>A
<option>B
<option>C
<option>D
<option>E
<option>F
<option>G
</select>
<br>
   
<font size=5>Quantity:</font>
<input type="text" name="quantity" value="1" size=maxlength=onFocus="setStatus('(1-1000).')" onBlur="setStatus('')">
<br>
   
<font size=5>Toastiness:</font>
<input type="text" name="toastiness" value="50" size=maxlength=onFocus="setStatus('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('?')">
<font size=5>No</font>
<input type="radio" name="buttered" value="no" onClick="setStatus('?')">
   
<hr>
<input type="submit" value="Start Toaster">
<input type="reset">
   
</form>
</body>
</html>
           
       



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Form Control
» Form HTML