The pointerover event is fired when a pointing device is moved into an element's hit test boundaries.
| Bubbles | Yes |
|---|---|
| Cancelable | Yes |
| Interface | PointerEvent |
| Event handler property | onpointerover |
Examples
Using addEventListener():
const para = document.querySelector('p');
para.addEventListener('pointerover', (event) => {
console.log('Pointer moved in');
});
Using the onpointerover event handler property:
const para = document.querySelector('p');
para.onpointerover = (event) => {
console.log('Pointer moved in');
};
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 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
pointerover 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
gotpointercapturelostpointercapturepointerenterpointerdownpointermovepointeruppointercancelpointeroutpointerleaveonpointeroverevent handler property- This event on
Documenttargets:pointeroverevent
