pointermove | onpointermove event
Dispatched when a pointer changes coordinates, button state, pressure, tilt, or contact geometry (for example, width and height).
Note As of Internet Explorer 11, the Microsoft vendor prefixed version of this event (MSPointerMove) is no longer supported. Instead, use the non-prefixed lowercase name, pointermove, which is better for standards compliance and future compatibility.
![]() |
Syntax
| HTML Attribute | <element onpointermove = "handler(event)"> |
|---|---|
| addEventListener Method | object.addEventListener("pointermove", handler, useCapture) |
Event information
| Synchronous | Yes |
|---|---|
| Bubbles | Yes |
| Cancelable | Yes |
Event handler parameters
- handler [in]
-
Type: Function
Function to execute when the event is dispatched
Standards information
- Pointer Events, Section 5.2.5
Remarks
Starting with IE11, the MSPointerHover event has been deprecated and the pointermove event will fire for all pen movement (regardless if its hovering or not).
See also
Show:
