An identifier assigned to a pointer event that is unique from the identifiers of all active pointer events at the time. Authors cannot assume values convey any particular meaning other than an identifier for the pointer that is unique from all other active pointers.
This property is Read only .
var id = pointerEvent.pointerId;
id
This example illustrates the PointerEvent
interface's pointerId
property.
The following code snippet compares a previously saved pointer id with the identifier of the pointerdown
event that was just fired.
var id; target.addEventListener("pointerdown", function(ev) { // Compare previous id that was cached with this event's id // and handle accordingly if (id == ev.identifier) process_event(ev); }, false);
Specification | Status | Comment |
---|---|---|
Pointer Events – Level 2 The definition of 'pointerId' in that specification. | Working Draft | Non-stable version. |
Pointer Events The definition of 'pointerId' in that specification. | Recommendation | Initial definition. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 55.0 | (Yes) | (Yes) [1] | 10 | 42 | No support |
Feature | Android | Android Webview | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|---|
Basic support | No support | 55.0 | (Yes) | No support | No support | 10 | 42 | No support | 55.0 |
[1] This feature is currently hidden behind a flag; to enable it and experiment, set the dom.w3c_pointer_events.enabled
preference to true
in about:config
.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId