---
title: eventMouseEnter
type: callback
---

Triggered when the user mouses over an event. Similar to the native [mouseenter](https://developer.mozilla.org/en-US/docs/Web/Events/mouseenter).

<div class='spec'>
function( <em>mouseEnterInfo</em> ) &#123; &#125;
</div>

`mouseEnterInfo` is a plain object with the following properties:

<table>
<tbody>
<tr>
<th>event</th>
<td>

The associated [Event Object](event-object).

</td>
</tr>

<tr>
<th>el</th>
<td>

The HTML element for this event.

</td>
</tr>

<tr>
<th>jsEvent</th>
<td>

The native JavaScript event with low-level information such as click coordinates.

</td>
</tr>

<tr>
<th>view</th>
<td>

The current [View Object](view-object).

</td>
</tr>
</tbody>
</table>

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