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
You can use the html title attribute without any tooltip lib :
$('#calendar').fullCalendar({ events: [ { title: 'My Event', start: '2014-01-01', tooltip: 'This is a cool event' } // more events here ], eventRender: function(event, element) { element.attr('title', event.tooltip); } });