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.
I have tried this approach, works well.
$('#calendar').fullCalendar({ defaultView: 'month', selectable: true, selectAllow: function(select) { return moment().diff(select.start) <= 0 } })
Enjoy!