I would like to find out how can I limit the fullcalendar to show a three months period and deselectable for the rest of the months like within a datepicker?
E.g. T
you can use the option
$('#calendar').fullCalendar({ header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay' }, validRange: { start: '2017-05-01',//start date here end: '2017-07-01' //end date here }, defaultDate: '2017-05-12' });