I've added the detaultDate to my datepicker, it is getting the default date from a database, if i look at the source code of my page when ran the defaultDate looks fine but it goes to a completely different date, date format is dd/mm/yyyy.

$("#date").datepicker({
    changeMonth: false,
    changeYear: false,
    dateFormat: 'dd/mm/yyyy',
    defaultDate: '01/05/2010',
    duration: 'fast'
});

I've also tried:

var defaultDate = $( "#date" ).datepicker( "option", "defaultDate" );
$( "#date" ).datepicker( "option", "defaultDate", "01/05/2010" );

but instead of going to 01/05/2010 it goes to 23/02/2016.

It works fine if i use +7 or something but not a full date.

Any one got any ideas.

Thanks in advance.

J.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Shouldn't you be using yy instead of yyyy per the API? Can you provide a demo?

link|improve this answer
that seems to have done the trick, many thanks. – JBoom Aug 17 '10 at 16:30
feedback

Your Answer

 
or
required, but never shown

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