thefollower Posted October 14, 2007 Share Posted October 14, 2007 Hey guys, I have validation for my two input boxes but the javascript does not seem to do any thing about it when the input doesn't match the validation... This is what i have: <script language="JavaScript" type="text/javascript"> function ValidateForm1(theForm) { if (theForm.TextArea1.value == "") { alert("Message must not be blank!"); theForm.TextArea1.focus(); return false; } var strFilter = /^[-+]?\d*\.?\d*$/; var chkVal = theForm.HouseNumber.value; if (!strFilter.test(chkVal)) { alert("Must be numbers only!"); theForm.HouseNumber.focus(); return false; } if (theForm.Subject.value.length > 100) { alert("Max subject line is 25 characters and must not be blank!"); theForm.Subject.focus(); return false; } return true; } function ValidateForm1(theForm) { if (theForm.TextArea1.value == "") { alert("Please enter a message!"); theForm.TextArea1.focus(); return false; } if (theForm.TextArea1.value.length > 250) { alert("Please enter a message that does not exceed 250 characters this includes spaces."); theForm.TextArea1.focus(); return false; } return true; } </script> This is the html regarding it: <input type="text" id="test" style="position:absolute;left:200px;top:0px;width:144px;font-family:Courier;font-size:19px;z-index:16" size="16" name="Subject" value=""> </div> <textarea name="Letter" id="TextArea1" style="position:absolute;left:29px;top:27px;width:462px;height:443px;border:1px #000000 solid;z-index:0" rows="26" cols="49"></textarea> <input type="text" id="HouseNumber" style="position:absolute;left:349px;top:670px;width:144px;font-family:Courier;font-size:19px;z-index:7" size="16" name="HouseNumber" value=""> Quote Link to comment Share on other sites More sharing options...
fenway Posted October 15, 2007 Share Posted October 15, 2007 Define doesn't do anything.. .no alerts()/ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.