Jquery ui Datepicker, showing next month.
Posted
by Alex
on Stack Overflow
See other posts from Stack Overflow
or by Alex
Published on 2010-05-25T15:53:00Z
Indexed on
2010/05/25
16:51 UTC
Read the original article
Hit count: 196
I wonder how to set next month with showing only mondays active:
i tried to do smth like that but it wont work
function onlyMondaysNextMonth(date){
var day = date.getDay();
var mDate = date.getMonth() + 1;
return {
minDate: mDate,
}
return [(day == 1),''];
}
Thank you.
© Stack Overflow or respective owner