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
Use Bootstrap tooltip plugin http://getbootstrap.com/javascript/#tooltips . And then inside eventRender callback write following:
eventRender: function(event, element) { $(element).tooltip({title: event.title}); }
This will work