I use a jquery datepicker in my ASP.NEt Application and I want if the User is from Spania or german I use a other dateformat.
Here is my jquery code:
$(function () {
$("#txtAbwesenheitBis").datepicker();
$("#format").change(function () {
$("#txtAbwesenheitBis").datepicker("option", "dateFormat", $(this).val());
});
});
How I can use a other dateformat? Or how I can use the german dateformat?