Data Type JavaScript DHTML




function check_it()
{
     var thetext=document.myForm.the_time.value;
     if (thetext.indexOf(":") == -1)
     {
          window.alert("No colon(:)");
          return false;
     }
     else
     {
         return true;
     }
}




Time: