Created a form with this site, the birthdate field always return an error and you cant edit the form description.
http://www.sunsetlanes.net/form.html
The date field fails right here: if (validateDate('field_7','fieldBox_7','date',0,'05/01/2009','05/27/1950') == false)
The validateDate javascript takes minDate and maxDate in that order. Your minDate='05/01/2009' Your maxDate='05/27/1950'
I'm not sure how it got this way but the dates are reversed (min greater than max) so the validate will never return true.
Try making the min date yesterday, and make the max date the same day and month 10 years from now.
Log in to post a comment.
Created a form with this site, the birthdate field always return an error and you cant edit the form description.
http://www.sunsetlanes.net/form.html
The date field fails right here:
if (validateDate('field_7','fieldBox_7','date',0,'05/01/2009','05/27/1950') == false)
The validateDate javascript takes minDate and maxDate in that order.
Your minDate='05/01/2009'
Your maxDate='05/27/1950'
I'm not sure how it got this way but the dates are reversed (min greater than max) so the validate will never return true.
Try making the min date yesterday, and make the max date the same day and month 10 years from now.