I don't know fullcalander, but I know a bit of jQuery. Maybe you want something like this:
eventClick: function(calEvent, jsEvent, view) {
$(this).animate({ opacity: 0 }, 1000, function() {
$('#kal').fullCalendar('removeEvents', calEvent.id);
});
}
I donβt think $ (this) is right, I think you need some kind of link to the event bar. (e.g. class or id)
source
share