Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR ANGULARJS GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SWIFT SASS VUE GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING INTRO TO HTML & CSS BASH RUST TOOLS

JS Tutorial

JS Syntax

JS Operators

JS If Conditions

JS Loops

JS Strings

JS Numbers

JS Functions

JS Objects

JS Scope

JS Dates

JS Temporal  New

JS Arrays

JS Sets

JS Maps

JS Iterations

JS Math

JS RegExp

JS Data Types

JS Errors

JS Debugging

JS Style Guide

JS Reference

JS Projects New

JS 2026

JS HTML DOM

JS HTML Events


JS Advanced


JS Functions

JS Objects

JS Classes

JS Asynchronous

JS Modules

JS Meta & Proxy

JS Typed Arrays

JS DOM Navigation

JS Windows

JS Web API

JS AJAX

JS JSON

JS jQuery

JS Graphics

JS Examples

JS Reference


Pointer Events API

The Pointer Events API is a modern web standard that provides a unified input model for handling various pointing devices, such as a mouse, pen/stylus, and touch (finger).

It simplifies development by consolidating separate mouse and touch event models into a single, hardware-agnostic system.

For the modern web, pointer events is the recommended approach to create interactive interfaces that provide a consistent experience for all users, regardless of hardware.


Event Types

Pointer event names are similar to mouse events.

Just replace "mouse" with "pointer":

  • pointerdown
    Fired when a pointer becomes active (button pressed, physical contact).

  • pointerup
    Fired when a pointer is no longer active (button released, contact ended).

  • pointermove
    Fired when a pointer changes coordinates.

  • pointerover
    Fired when a pointer is moved into an element.

  • pointerout
    Fired when a pointer moves out of an element.

  • pointerenter
    Similar to pointerover, but does not bubble up through the DOM hierarchy.

  • pointerleave
    Similar to pointerout, but does not bubble.

  • pointercancel
    Fired when the system cancels the pointer interaction (interrupted by the OS opening a system menu).


Event Properties

The PointerEvent interface inherits properties from MouseEvent and adds specific ones:

  • pointerId
    A unique ID for each pointer, allowing tracking in multi-touch scenarios.

  • pointerType
    A string indicating the device type: "mouse", "pen", or "touch".

  • isPrimary
    A boolean true for the primary pointer (the first finger in a multi-touch).

  • pressure
    A normalized value (0 to 1) indicating the pressure applied by the pointer.


Pointer Events API Benefits

Developers can write a single set of event listeners (a unified model) that work across multiple input types, reducing code duplication and complexity.

In addition to standard mouse event properties (like client coordinates), PointerEvent objects include new properties specific to other inputs, such as pressure, tiltX, tiltY, width, and height, (useful for pen and touch interactions).

Methods like setPointerCapture() allow an element to receive pointer events when the pointer moves outside its boundaries (useful for sliding or dragging).

The API can track multiple simultaneous touch points, unlike traditional mouse events.



CSS pointer-events Property

The pointer-events CSS property is a separate feature that controls whether or not an element can be the target of any pointer interactions.

The style="pointer-events: none; in CSS, disables all mouse and touch interactions on an HTML element and its descendants.

The style="pointer-events: auto; in CSS, restores the default behavior.

This CSS property is useful for creating layered interfaces, or temporarily disabling interactions on certain elements without modifying the underlying JavaScript logic.


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookies and privacy policy.

Copyright 1999-2026 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.

-->