I would like to know if it is possible to make a more complete masks for the date field using this plugin (jQuery -mask) for example the user can put in the field 99 month when in fact the month only goes to 12 and in the day field also the same thing can put 99 when in fact the maximum would be 31 there is some way to mask this follows the form of site
Excerpt from code used on the site:
<script type="text/javascript">
$(document).ready(function(){
//dados pessoais
$('#input-custom-field3').mask('00/00/0000');
$('#input-custom-field1').mask('000.000.000-00', {reverse: false});
$('#cnpj').mask('00.000.000/0000-00', {reverse: false});
$('#input-custom-field2').mask('00.000.000-0', {reverse: false});
$('#phone_with_ddd').mask('(00) 0000-0000');
$('#cel_with_ddd').mask('(00) 00000-0000');
//endereço
$('#input-postcode').mask('00000-000');
$('#input-custom-field5').mask('0000000');
});
</script>