Fullcalendar with Twitter Bootstrap Popover
I am trying to get Fullcalendar working with twitter boostrap popovers. if I click an event, i want to show some details in the popover. So first added this lil snippet to Fullcalendar: eventClick: function(event, jsEvent, view) { $this = $(this); $this.popover({html:true,title:event.title,placement:'top'}).popover('show'); return false; }, But now I run into 2 problems: Fullcalendar is inside a div that has overflow:hidden or something, because the popover gets cut on the border of Fullcalendar. How do I fix that? Similar to problem 2 I would like to place the popover via a function on top,