Document: pointerleave event

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.

Bubbles No
Cancelable No
Interface PointerEvent
Event handler property onpointerleave

Examples

Using addEventListener():

document.addEventListener('pointerleave', (event) => {
  console.log('Pointer left element');
});

Using the onpointerleave event handler property:

document.onpointerleave = (event) => {
  console.log('Pointer left element');
};

Specifications

Specification
Pointer Events
# the-pointerleave-event

Browser compatibility

BCD tables only load in the browser

See also