jQuery mousemove: Main Tips
- The jQuery
.mousemove()
binds an event handler tomousemove
event, or triggers the event. - The
mousemove
event fires whenever the mouse cursor moves for a single pixel. This means hundreds of events can be generated in seconds, so you should be aware of optimization options.
Usage of .mousemove()
The jQuery .mousemove()
method attaches an event handler which executes a function when the mousemove
event occurs. It can invoke the event as well.
The example below shows using .mousemove()
together with pageY and pageX properties to track and display cursor coordinates:
.mousemove() Syntax
The syntax required to trigger the jQuery mousemove
event is simple, as there are no parameters to define:
$("selector").mousemove();
To attach an event handler, simply include the callback function as a parameter in the parentheses:
$("selector").mousemove(function);
A good optimization practice is to bind the handler of .mousemove()
from within a .mousedown() handler, and unbind it from the appropriate handler of .mouseup().
Note: optimization of the jQuery mousemove event is crucial as every cursor move will trigger it. Unbind these events when they are no longer needed.