vote up 0 vote down star
1

Hi

I am using the UI DatePicker from jQuery UI as the stand alone picker.. i have this code

<div id="datepicker"></div>

And the follow JS

$('#datepicker').datepicker();

When i try to return the value with this code:

var date = $('#datepicker').datepicker('getDate');

I am returned this...

Tue Aug 25 2009 00:00:00 GMT+0100 (BST)

Which is totally the wrong format... Is there a way i can return DD-MM-YYYY ??

flag

1 Answer

vote up 5 vote down check

Here's one specific for your code:

var date = $('#datepicker').datepicker({ dateFormat: 'dd-mm-yy' });

More general info available here:

link|flag
This doesn't seem to work.. where in my code do i put this? – tarnfeld Aug 25 at 13:02
1  
Sorry that was a bit generalized. I've updated with the actual block you'd want to use above. – AvatarKava Aug 25 at 13:31

Your Answer

Get an OpenID
or

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