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"> Trigger the handler </div> <div id="log"></div>
The event handler can be bound to the target:
$( "#target" ).mousemove(function( event ) { var msg = "Handler for .mousemove() called at "; msg += event.pageX + ", " + event.pageY; $( "#log" ).append( "<div>" + msg + "</div>" ); });
Now when the mouse pointer moves within the target button, the messages are appended to <div id="log">:
Handler for .mousemove() called at (399, 48)
Handler for .mousemove() called at (398, 46)
Handler for .mousemove() called at (397, 44)
Handler for .mousemove() called at (396, 42)
To trigger the event manually, apply .mousemove()
without an argument:
$( "#other" ).click(function() { $( "#target" ).mousemove(); });
After this code executes, clicks on the Trigger button will also append the message:
Handler for .mousemove() called at (undefined, undefined)
When tracking mouse movement, you usually need to know the actual position of the mouse pointer. The event object that is passed to the handler contains some information about the mouse coordinates. Properties such as .clientX
, .offsetX
, and .pageX
are available, but support for them differs between browsers. Fortunately, jQuery normalizes the .pageX
and .pageY
properties so that they can be used in all browsers. These properties provide the X and Y coordinates of the mouse pointer relative to the top-left corner of the document, as illustrated in the example output above.
Keep in mind that the mousemove
event is triggered whenever the mouse pointer moves, even for a pixel. This means that hundreds of events can be generated over a very small amount of time. If the handler has to do any significant processing, or if multiple handlers for the event exist, this can be a serious performance drain on the browser. It is important, therefore, to optimize mousemove
handlers as much as possible, and to unbind them as soon as they are no longer needed.
A common pattern is to bind the mousemove
handler from within a mousedown
hander, and to unbind it from a corresponding mouseup
handler. If implementing this sequence of events, remember that the mouseup
event might be sent to a different HTML element than the mousemove
event was. To account for this, the mouseup
handler should typically be bound to an element high up in the DOM tree, such as <body>
.
- As the
.mousemove()
method is just a shorthand for.on( "mousemove", handler )
, detaching is possible using.off( "mousemove" )
.
A function to execute each time the event is triggered.
An object containing data that will be passed to the event handler.
A function to execute each time the event is triggered.
Show the mouse coordinates when the mouse is moved over the yellow div. Coordinates are relative to the window, which in this case is the iframe.
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>mousemove demo</title> <style> div { width: 220px; height: 170px; margin: 10px 50px 10px 10px; background: yellow; border: 2px groove; float: right; } p { margin: 0; margin-left: 10px; color: red; width: 220px; height: 120px; padding-top: 70px; float: left; font-size: 14px; } span { display: block; } </style> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> </head> <body> <p> <span>Move the mouse over the div.</span> <span> </span> </p> <div></div> <script> $( "div" ).mousemove(function( event ) { var pageCoords = "( " + event.pageX + ", " + event.pageY + " )"; var clientCoords = "( " + event.clientX + ", " + event.clientY + " )"; $( "span:first" ).text( "( event.pageX, event.pageY ) : " + pageCoords ); $( "span:last" ).text( "( event.clientX, event.clientY ) : " + clientCoords ); }); </script> </body> </html>
Please login to continue.