.mouseout( handler )Returns: jQueryversion deprecated: 3.3
Description: Bind an event handler to the "mouseout" event, or trigger that event on an element.
-
version added: 1.0.mouseout( handler )
-
handlerA function to execute each time the event is triggered.
-
-
version added: 1.4.3.mouseout( [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.mouseout()
- This signature does not accept any arguments.
This API is deprecated.
Instead of .mouseout( handler )
or .mouseout( eventData, handler )
, use .on( "mouseout", handler )
or .on( "mouseout", eventData, handler )
, respectively.
Instead of .mouseout()
, use .trigger( "mouseout" )
.