The calendar lets the user drag a timeslot onto the calendar, however I would like them to be able to remove it if they click on it.
So in the eventClick I have this fun
Even simpler:
eventClick: function(calEvent, jsEvent, view) { $('#calendar').fullCalendar('removeEvents', function (event) { return event == calEvent; }); }