Setting the date range with the min attribute, for example:
<input name="thedate" type="date" data-value="1980-01-01" min="-29565" />
will trigger the min acceptable value validation script when using form validation. Of course, as the input will be a date string, the user will never be able to pass validation on this field.
<input name="thedate" type="date" data-value="1980-01-01" min="-29565" />
will trigger the min acceptable value validation script when using form validation. Of course, as the input will be a date string, the user will never be able to pass validation on this field.
