pointerout | onpointerout event
Dispatched when any of the following occurs:
- A pointing device is moved out of the hit test boundaries of an element
- After firing the pointerup event for a device that does not support hover
- After firing the pointercancel event
Note As of Internet Explorer 11, the Microsoft vendor prefixed version of this event (MSPointerOut) is no longer supported. Instead, use the non-prefixed lowercase name, pointerout, which is better for standards compliance and future compatibility.
![]() |
Syntax
| HTML Attribute | <element onpointerout = "handler(event)"> |
|---|---|
| addEventListener Method | object.addEventListener("pointerout", handler, useCapture) |
Event information
| Synchronous | Yes |
|---|---|
| Bubbles | Yes |
| Cancelable | Yes |
Event handler parameters
- handler [in]
-
Type: Function
Function to execute when the event is dispatched
Standards information
- Pointer Events, Section 5.2.7
See also
Show:
