The pointermove event is fired when a pointer changes coordinates, and the pointer has not been canceled by a browser touch-action.
| Bubbles | Yes |
|---|---|
| Cancelable | Yes |
| Interface | PointerEvent |
| Event handler property | onpointermove |
Examples
Using addEventListener():
document.addEventListener('pointermove', (event) => {
console.log('Pointer moved');
});
Using the onpointermove event handler property:
document.onpointermove = (event) => {
console.log('Pointer moved');
};
Specifications
| Specification | Status |
|---|---|
| Pointer Events | Obsolete |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
pointermove event | Chrome Full support 55 | Edge
Full support
12
| Firefox
Full support
59
| IE
Full support
11
| Opera ? | Safari No support No | WebView Android Full support 55 | Chrome Android Full support 55 | Firefox Android
Full support
29
| Opera Android ? | Safari iOS No support No | Samsung Internet Android Full support 6.0 |
Legend
- Full support
- Full support
- No support
- No support
- Compatibility unknown
- Compatibility unknown
- User must explicitly enable this feature.
- User must explicitly enable this feature.
- Uses a non-standard name.
- Uses a non-standard name.
See also
gotpointercapturelostpointercapturepointeroverpointerenterpointerdownpointeruppointercancelpointeroutpointerleaveonpointeroutevent handler property- This event on
HTMLElementtargets:pointermoveevent
