Problem is, how to disable selectable on PAST DATES in fullcalendar\'s month/week view.
I want to user not allowed to click/select the on past dates.
below is the solution i'm using now:
select: function(start, end, jsEvent, view) { if (moment().diff(start, 'days') > 0) { $('#calendar').fullCalendar('unselect'); // or display some sort of alert return false; }