I want to add tooltip for the fullcalendar in year view. I tried with the below one but it added tooltip to month view. I tried with google but did not find anything related
since 1.5 version, you can use qtip (i also use tipsy but it should work with tooltip) to display a tip on an event:
$('#calendar').fullCalendar({
events: [
{
title: 'My Event',
start: '2010-01-01',
description: 'This is a cool event'
}
// more events here
],
eventRender: function(event, element) {
element.qtip({
content: event.description
});
}
});
doc source: http://arshaw.com/fullcalendar/docs/event_rendering/eventRender/
hope this helps