Validate date format mm/dd/yyyy by using jquery validation library
First add the custom method to the validation library as below. Can you put this code in your jquery validation file or in your page where you want to validate the date, just before setting your validation rule for your form. $.validator.addMethod(“dateFormat”, function (value, element) { return value.match(/^(?:(0[1-9
Read article
