I want to show a flat jQuery datepicker with three months and initially the current month in the middle. My code :
$('#threeMonths').datepicker({
numberOfMonths:[1,3],
showCurrentAtPos: 1
});
In this form it changes the months displayed whenever I click on any date, and always one month back, why is that and how could I fix it?
Update >
The solution that fits my needs is to increment drawMonth in the onSelect callback, as my editing of Berker's answer demonstrates.
$(".date").datepicker({ numberOfMonths: [1, 3], showCurrentAtPos: 3 });so you can implement this datepicker every "date" class input. – Berker Yüceer Sep 6 '12 at 10:21