hellraizer
hellraizer

Reputation: 133

Mouseover on Event day cell in FullCalendar

Is it possible to show a pop up details of the event when i mouseover on event cell not on event bar line.

enter image description here

Regards

Upvotes: 0

Views: 1316

Answers (1)

worlock
worlock

Reputation: 300

eventMouseover

Triggered when the user mouses over an event.

function( event, jsEvent, view ) { }

event is an Event Object that holds the event's information (date, title, etc).

full documentation : https://fullcalendar.io/docs/mouse/eventMouseover/

Upvotes: 1

Related Questions