Back to Fullcalendar

eventMouseEnter

_docs-v5/event-clicking-hovering/eventMouseEnter.md

latest814 B
Original Source

Triggered when the user mouses over an event. Similar to the native mouseenter.

<div class='spec' markdown='1'> function( *mouseEnterInfo* ) { } </div>

mouseEnterInfo is a plain object with the following properties:

<table> <tr> <th>event</th> <td markdown='1'> The associated [Event Object](event-object). </td> </tr> <tr> <th>el</th> <td markdown='1'> The HTML element for this event. </td> </tr> <tr> <th>jsEvent</th> <td markdown='1'> The native JavaScript event with low-level information such as click coordinates. </td> </tr> <tr> <th>view</th> <td markdown='1'> The current [View Object](view-object). </td> </tr> </table>

Unlike some other event-related interactions, eventMouseEnter does not require the interaction plugin.