Element: pointerleave event
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2020.
The pointerleave event is fired when a pointing device is moved out of the hit test boundaries of an element. For pen devices, this event is fired when the stylus leaves the hover range detectable by the digitizer. Otherwise, pointerleave works the same as mouseleave, and are dispatched at the same time. They are also dispatched at the same time as mouseout and pointerout events, if appropriate.
Syntax
Use the event name in methods like addEventListener(), or set an event handler property.
js
addEventListener("pointerleave", (event) => { })
onpointerleave = (event) => { }
Event type
A PointerEvent. Inherits from Event.
Examples
Using addEventListener():
js
const para = document.querySelector("p");
para.addEventListener("pointerleave", (event) => {
console.log("Pointer left element");
});
Using the onpointerleave event handler property:
js
const para = document.querySelector("p");
para.onpointerleave = (event) => {
console.log("Pointer left element");
};
Specifications
| Specification |
|---|
| Pointer Events> # the-pointerleave-event> |
| Pointer Events> # dom-globaleventhandlers-onpointerleave> |