I am designing a data input form using asp.net MVC4 which has an input of type date.
Using the unobtrusive jQuery library in chrome and jQueryUI datepicker I was sti
Can i suggest you another work around, Put this in your web.config to avoid issues with differenet culture settings.
And in Jquery datepicker this would be enough,
$(function () { $(".datepicker").datepicker({ dateFormat: "dd/MM/yyyy" }); });