Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have noticed an unexpected behavior in jQuery UI datepicker.

Whenever I use a format that does not include day, e.g. 'MM yy' (October 2011), the datepicker, when shown next time, points to today instead of the previous date.

This does not occur when for format is used e.g. 'dd/mm/yy' (01/10/2011).

I think this might be in fact a bug and I will report it to the jQuery UI community.

Anyways, in the meantime, I wonder if you faced this problem before and can suggest me a workaround?

Example presenting the problem can be found here.

EDIT: For completeness: I submitted this issue to jQuery UI community as a bug. For those interested it could be found here.

share|improve this question

1 Answer

up vote 3 down vote accepted

I solved your issue. please Checkout this link http://jsfiddle.net/nEGTv/3/

Just add this line to your code $("#monthDate1").datepicker('option', 'defaultDate', new Date(year, month, 1)); in your $("#monthDate1").focus function.

share|improve this answer
1  
Thank you very much more then great full, I thought there must be a way to get it done. Good job +1 and accept :) – Boro Mar 23 '12 at 12:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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