%PDF- %PDF-
| Direktori : /home/casasmonvl/coronamillennial/Scripts/validacions/ |
| Current File : /home/casasmonvl/coronamillennial/Scripts/validacions/Date.js |
//Afegit 12/01/17 csierra
//Tractament de l'error d'introduir Date: "The field X must be a date"
//Info: http://stackoverflow.com/questions/15706455/the-field-date-must-be-a-date-in-mvc-in-chrome
//https://stackoverflow.com/questions/23514035/jquery-validation-for-dates-in-dd-mm-yyyy-format
$.validator.methods.date = function (value, element) {
var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
if (isChrome) {
var d = new Date();
return this.optional(element) || !/Invalid|NaN/.test(new Date(d.toLocaleDateString(value)));
} else {
return this.optional(element) || !/Invalid|NaN/.test(new Date(value));
}
};