ainoy31 Posted August 13, 2008 Share Posted August 13, 2008 Hello- I am having an issue with validating my form. Here is my form input fields: <form name="usage" action="usage_detail.php" method="post" target="_blank"> <input type="text" class="DW100" id="f_date_c" name="start_date" readonly="1" / value="" /> <input type="text" class="DW100" name="end_date" id="f_date_c2" readonly="1" / value=""> <div class="ButtonContainer Inline"> <a class="Button Small" href="#" id="FormSubmit" onClick="validateDates(this.form);"><span>View</span></a></div> </form> Here is the javascript that I am using but it does not validate and continues to the next page. <script language="javascript" type="text/javascript"> <!-- function validateDates() { if(document.usage.start_date.value == '' || document.usage.end_date.value == '') { ok = false; } else { ok = true; } if(ok = true) { document.usage.submit(); } else { alert("The start and the end dates need to be entered."); } } //--> </script> Much appreciation. AM Link to comment https://forums.phpfreaks.com/topic/119445-javascript-form-validation/ Share on other sites More sharing options...
adam84 Posted August 13, 2008 Share Posted August 13, 2008 Try change the 'href' for the button from 'href=#' to HREF='javascript:void(0);' Link to comment https://forums.phpfreaks.com/topic/119445-javascript-form-validation/#findComment-615468 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.