Reputation: 33
Is there a way to attach a qTip (or bootstrap tooltip) to a FullCalendar header? I thought something like below would work but it doesn't.
$(document).ready(function () {
$('.fc-header-title').qtip({
content: {
text: '<img src="../Content/Images/EventLegend" />'
}
});
I've tried variations like td.fc-header-title, .fc-header, but nothing has worked.
Upvotes: 0
Views: 54
Reputation: 33
It would work fine that way - I just had to make sure this code came AFTER the fullcalendar defintion...
Upvotes: 1