The pointerout event is fired for several reasons including: pointing device is moved out of the hit test boundaries of an element; firing the pointerup event for a device that does not support hover (see pointerup); after firing the pointercancel event (see pointercancel); when a pen stylus leaves the hover range detectable by the digitizer.
| Bubbles | Yes |
|---|---|
| Cancelable | Yes |
| Interface | PointerEvent |
| Event handler property | onpointerout |
Examples
Using addEventListener():
const para = document.querySelector('p');
para.addEventListener('pointerout', (event) => {
console.log('Pointer moved out');
});
Using the onpointerout event handler property:
const para = document.querySelector('p');
para.onpointerout = (event) => {
console.log('Pointer moved out');
};
Specifications
| Specification | Status |
|---|---|
| Pointer Events | Obsolete |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
pointerout event | Chrome Full support 55 | Edge
Full support
12
| Firefox
Full support
59
| IE
Full support
11
| Opera ? | Safari No support No | WebView Android Full support 55 | Chrome Android Full support 55 | Firefox Android
Full support
29
| Opera Android ? | Safari iOS No support No | Samsung Internet Android Full support 6.0 |
Legend
- Full support
- Full support
- No support
- No support
- Compatibility unknown
- Compatibility unknown
- User must explicitly enable this feature.
- User must explicitly enable this feature.
- Uses a non-standard name.
- Uses a non-standard name.
See also
gotpointercapturelostpointercapturepointeroverpointerenterpointerdownpointermovepointeruppointercancelpointerleaveonpointeroutevent handler property- This event on
Documenttargets:pointeroutevent
