79292650

Date: 2024-12-18 22:27:35
Score: 0.5
Natty:
Report link

In the eventClick() handler, you can simply remove any .fc-more-popover objects.

Eg w. jQuery:

new FullCalendar.Calendar(div, {
    eventClick: function(info) {
        $(".fc-more-popover").remove();
        var id = info.event.id;
        // do something with id
    }
});
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andreas Huttenrauch