Remove past dates and next months dates from the current month
Is it possible to remove the past dates and next month's dates from the fullcalendar? So for the current month it should display only current dates and days. You could try skipping the events in the eventRender() method: eventRender: function(event, element, view) { if(event.start.getMonth() !== view.start.getMonth()) { return false; } } The grid cells for the next and previous month have the class "fc-other-month", so you can target them that way: e.g.: The hide the day numbers, add the CSS: .fc-other-month .fc-day-number { display:none;} or run this JavaScript: $(".fc-other-month .fc-day