Include following script in your javascript file and reference it in your page(s) to get rid of the most common error of JQuery date format validation in Chrome which doesn't allow non US dates.
$(document).ready(function () {
jQuery.validator.methods["date"] = function (value, element) { return true; }
})
$(document).ready(function () {
jQuery.validator.methods["date"] = function (value, element) { return true; }
})