Get form TextField value : Tag Reference « Document « JavaScript Tutorial






<HTML>

<HEAD>

<SCRIPT language="JavaScript">
<!--

function check_it()
{
   var thetext=document.myForm.the_time.value;
   if (thetext.indexOf("a") == -1)
   {
     window.alert("a should in between");
     return false;
   }
   else
   {
   return true;
   }
}
//-->
</SCRIPT>

</HEAD>

<BODY>

<FORM name="myForm" action="#" onSubmit="return check_it();">
What time is it?<BR>
<INPUT type="text" name="the_time">
<BR>
<INPUT type="submit" value="Submit">
</BODY>

</HTML>








14.33.Tag Reference
14.33.1.Reference your tags in document
14.33.2.Get form TextField value