I am using HTML5 date type inputs with min and max attributes set.
<input class="AccordionLeft" data-val="true"
id="operationDate" max="2050-01-01" min="2014-09-02"
name="OpDate" type="date" value="">
When I enter a date before the min date, I get the jquery validation message from the built-in validator. I would like to customize this. We have created several custom rules (via custom data annotations) and for our custrom validation rules, setting the error message was simple.
Is there anything like this for built-in validators?