Does anyone know how to format the Jquery datepicker? I want it to display it like dd/mm/yyyy and that is the only way I want to display it, but at the moment it is displaying it like mm/dd/yyyy.

I tried this but it didn't work:

   $(function() {
        $( "#datepicker" ).datepicker({format("dd/mm/yyyy")});
    });

Does anyone have an idea?

link|improve this question

65% accept rate
The documentation is a great thing! jqueryui.com/demos/datepicker/#options – motoxer4533 Nov 17 '11 at 18:19
Thanks for that, I will look at the documetation for other functions. – BruceyBandit Nov 17 '11 at 18:54
feedback

1 Answer

up vote 2 down vote accepted

The key you want is dateFormat:

$(function() {
  $( "#datepicker" ).datepicker({dateFormat: "dd/mm/yyyy"});
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.