My site has a form that has requirements to be submitted, but if javascript is disabled the requirements are no longer required. <input name="estimated_ship_date" type="text" required="required" id="estimated_ship_date" style="width:80px; float:right;" maxlength="10" />
Java Script Issue
3
My site has a form that has requirements to be submitted, but if javascript is disabled the requirements are no longer required.
<input name="estimated_ship_date" type="text" required="required" id="estimated_ship_date" style="width:80px; float:right;" maxlength="10" />
the required="required" part does not work in internet explorer 8, possibly 9, and then there is this as well:
<script language="JavaScript" type="text/javascript" xml:space="preserve">
//<![CDATA[
//You should create the validator only after the definition of the HTML form
var frmvalidator = new Validator("quoteForm");
frmvalidator.EnableOnPageErrorDisplaySingleBox();
frmvalidator.EnableMsgsTogether();
frmvalidator.addValidation("estimated_ship_date"," req","Please select your estimated ship date");
//]]></script>
the form has another dozen entry fields an I need a work around to make this work if javascript is disabled.
<input name="estimated_ship_date" type="text" required="required" id="estimated_ship_date" style="width:80px; float:right;" maxlength="10" />
the required="required" part does not work in internet explorer 8, possibly 9, and then there is this as well:
<script language="JavaScript" type="text/javascript" xml:space="preserve">
//<![CDATA[
//You should create the validator only after the definition of the HTML form
var frmvalidator = new Validator("quoteForm");
frmvalidator.EnableOnPageErrorDisplaySingleBox();
frmvalidator.EnableMsgsTogether();
frmvalidator.addValidation("estimated_ship_date"," req","Please select your estimated ship date");
//]]></script>
the form has another dozen entry fields an I need a work around to make this work if javascript is disabled.
- Brandon Tanner
- [ 1 ] Thanks
- otfromtot
Next Topics on Trending Feed
-
3