I need a pop up on hover full calendar like this one.
Have tried full calendar with qtip but could not get clickable popup its disappers when mouse is out from the s
check this example. http://jsfiddle.net/craga89/N78hs/
eventClick: function(data, event, view) {
var content = ''+data.title+'
' +
'Start: '+data.start+'
' +
(data.end && '
End: '+data.end+'
' || '');
tooltip.set({
'content.text': content
})
.reposition(event).show(event);
}
it works on click, not in hover, but you can adapt it to work in hover as well