fullcalendar/mouse/eventMouseover.txt

19 lines
514 B
Plaintext
Raw Normal View History

2010-01-16 23:29:18 +01:00
eventMouseover
==============
Triggered when the user mouses over an event.
<div class='spec' markdown='1'>
function( *event*, *jsEvent*, *view* ) { }
2010-01-16 23:29:18 +01:00
</div>
`event` is an [Event Object](../event_data/Event_Object) that holds the event's information (date, title, etc).
2010-01-16 23:29:18 +01:00
`jsEvent` holds the native JavaScript event with low-level information such as mouse coordinates.
2010-01-16 23:29:18 +01:00
`view` holds the current [View Object](../views/View_Object).
Within the callback function, `this` is set to the event's `<div>` element.