.mouseenter( handler )Returns: jQueryversion deprecated: 3.3
Description: Bind an event handler to the "mouseenter" event, or trigger that event on an element.
-
version added: 1.0.mouseenter( handler )
-
handlerA function to execute each time the event is triggered.
-
-
version added: 1.4.3.mouseenter( [eventData ], handler )
-
eventDataType: AnythingAn object containing data that will be passed to the event handler.
-
handlerA function to execute each time the event is triggered.
-
-
version added: 1.0.mouseenter()
- This signature does not accept any arguments.
This API is deprecated.
Instead of .mouseenter( handler )
or .mouseenter( eventData, handler )
, use .on( "mouseenter", handler )
or .on( "mouseenter", eventData, handler )
, respectively.
Instead of .mouseenter()
, use .trigger( "mouseenter" )
.