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; }
})
Nice code. It worked for me
ReplyDeletehttps://plus.google.com/u/0/109632983830278835215/posts/KAjbBT7jcyN?pid=6049951350347392626&oid=109632983830278835215
ReplyDeleteI got this error. Why?
Do you have jquery and jquery validator files added in your web page?
ReplyDeletethank. it's ok.
ReplyDeletei was add jquery and jquery validator but at the end of page. Now, i move to top and it has worked.