mousemove event


Bind an event handler to the "mousemove" event, or trigger that event on an element.

.on( "mousemove" [, eventData ], handler )Returns: jQuery

Description: Bind an event handler to the "mousemove" event.

This page describes the mousemove event. For the deprecated .mousemove() method, see .mousemove().

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:

1
2
3
4
5
6
7
<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:

1
2
3
4
5
$( "#target" ).on( "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, use .trigger( "mousemove" ):

1
2
3
$( "#other" ).on( "click", function() {
$( "#target" ).trigger( "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 handler, 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>.

Example:

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.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>on 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-3.7.0.js"></script>
</head>
<body>
<p>
<span>Move the mouse over the div.</span>
<span>&nbsp;</span>
</p>
<div></div>
<script>
$( "div" ).on( "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>

Demo: