Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element.
This method is a shortcut for .on( "mousemove", handler ) in the first two variations, and .trigger( "mousemove" ) in the third.
The mousemove event is sent to an element when the mouse pointer moves inside the element. Any HTML element can receive this event.
For example, consider the HTML:
<div id="target">
Move here
</div>
<div id="other