fires before the user clicks on a date in one of the calendar instances
side | string | "left" or "right" |
date | Date | clicked date |
myCalendar.attachEvent("onBeforeChange",function(side, date){
// your code here
return true; // allow selection
});
Back to top