W3cubDocs

/DOM

PointerEvent.pointerId

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 .

Syntax

var id = pointerEvent.pointerId;

Return value

id
The pointer event's unique identifier number.

Example

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.pointerId) process_event(ev);
 }, false);

Specifications

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.

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 55 12 59
59
41
Disabled
Disabled From version 41: this feature is behind the dom.w3c_pointer_events.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
10 42 No
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 55 55 12 No
No
41
Disabled
Disabled From version 41: this feature is behind the dom.w3c_pointer_events.enabled preference (needs to be set to true). To change preferences in Firefox, visit about:config.
42 No 6.0

© 2005–2018 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