interface GlobalEventHandlers {
    onabort: null | (this: GlobalEventHandlers, ev: UIEvent) => any;
    onanimationcancel:
        | null
        | (this: GlobalEventHandlers, ev: AnimationEvent) => any;
    onanimationend:
        | null
        | (this: GlobalEventHandlers, ev: AnimationEvent) => any;
    onanimationiteration:
        | null
        | (this: GlobalEventHandlers, ev: AnimationEvent) => any;
    onanimationstart:
        | null
        | (this: GlobalEventHandlers, ev: AnimationEvent) => any;
    onauxclick: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    onbeforeinput: null | (this: GlobalEventHandlers, ev: InputEvent) => any;
    onbeforetoggle: null | (this: GlobalEventHandlers, ev: Event) => any;
    onblur: null | (this: GlobalEventHandlers, ev: FocusEvent) => any;
    oncancel: null | (this: GlobalEventHandlers, ev: Event) => any;
    oncanplay: null | (this: GlobalEventHandlers, ev: Event) => any;
    oncanplaythrough: null | (this: GlobalEventHandlers, ev: Event) => any;
    onchange: null | (this: GlobalEventHandlers, ev: Event) => any;
    onclick: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    onclose: null | (this: GlobalEventHandlers, ev: Event) => any;
    oncontextlost: null | (this: GlobalEventHandlers, ev: Event) => any;
    oncontextmenu: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    oncontextrestored: null | (this: GlobalEventHandlers, ev: Event) => any;
    oncopy: null | (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
    oncuechange: null | (this: GlobalEventHandlers, ev: Event) => any;
    oncut: null | (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
    ondblclick: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    ondrag: null | (this: GlobalEventHandlers, ev: DragEvent) => any;
    ondragend: null | (this: GlobalEventHandlers, ev: DragEvent) => any;
    ondragenter: null | (this: GlobalEventHandlers, ev: DragEvent) => any;
    ondragleave: null | (this: GlobalEventHandlers, ev: DragEvent) => any;
    ondragover: null | (this: GlobalEventHandlers, ev: DragEvent) => any;
    ondragstart: null | (this: GlobalEventHandlers, ev: DragEvent) => any;
    ondrop: null | (this: GlobalEventHandlers, ev: DragEvent) => any;
    ondurationchange: null | (this: GlobalEventHandlers, ev: Event) => any;
    onemptied: null | (this: GlobalEventHandlers, ev: Event) => any;
    onended: null | (this: GlobalEventHandlers, ev: Event) => any;
    onerror: OnErrorEventHandler;
    onfocus: null | (this: GlobalEventHandlers, ev: FocusEvent) => any;
    onformdata: null | (this: GlobalEventHandlers, ev: FormDataEvent) => any;
    ongotpointercapture:
        | null
        | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    oninput: null | (this: GlobalEventHandlers, ev: Event) => any;
    oninvalid: null | (this: GlobalEventHandlers, ev: Event) => any;
    onkeydown: null | (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
    onkeypress: null | (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
    onkeyup: null | (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
    onload: null | (this: GlobalEventHandlers, ev: Event) => any;
    onloadeddata: null | (this: GlobalEventHandlers, ev: Event) => any;
    onloadedmetadata: null | (this: GlobalEventHandlers, ev: Event) => any;
    onloadstart: null | (this: GlobalEventHandlers, ev: Event) => any;
    onlostpointercapture:
        | null
        | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    onmousedown: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    onmouseenter: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    onmouseleave: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    onmousemove: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    onmouseout: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    onmouseover: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    onmouseup: null | (this: GlobalEventHandlers, ev: MouseEvent) => any;
    onpaste: null | (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
    onpause: null | (this: GlobalEventHandlers, ev: Event) => any;
    onplay: null | (this: GlobalEventHandlers, ev: Event) => any;
    onplaying: null | (this: GlobalEventHandlers, ev: Event) => any;
    onpointercancel:
        | null
        | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    onpointerdown: null | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    onpointerenter: null | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    onpointerleave: null | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    onpointermove: null | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    onpointerout: null | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    onpointerover: null | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    onpointerup: null | (this: GlobalEventHandlers, ev: PointerEvent) => any;
    onprogress:
        | null
        | (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
    onratechange: null | (this: GlobalEventHandlers, ev: Event) => any;
    onreset: null | (this: GlobalEventHandlers, ev: Event) => any;
    onresize: null | (this: GlobalEventHandlers, ev: UIEvent) => any;
    onscroll: null | (this: GlobalEventHandlers, ev: Event) => any;
    onscrollend: null | (this: GlobalEventHandlers, ev: Event) => any;
    onsecuritypolicyviolation:
        | null
        | (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
    onseeked: null | (this: GlobalEventHandlers, ev: Event) => any;
    onseeking: null | (this: GlobalEventHandlers, ev: Event) => any;
    onselect: null | (this: GlobalEventHandlers, ev: Event) => any;
    onselectionchange: null | (this: GlobalEventHandlers, ev: Event) => any;
    onselectstart: null | (this: GlobalEventHandlers, ev: Event) => any;
    onslotchange: null | (this: GlobalEventHandlers, ev: Event) => any;
    onstalled: null | (this: GlobalEventHandlers, ev: Event) => any;
    onsubmit: null | (this: GlobalEventHandlers, ev: SubmitEvent) => any;
    onsuspend: null | (this: GlobalEventHandlers, ev: Event) => any;
    ontimeupdate: null | (this: GlobalEventHandlers, ev: Event) => any;
    ontoggle: null | (this: GlobalEventHandlers, ev: Event) => any;
    ontouchcancel?: null | (this: GlobalEventHandlers, ev: TouchEvent) => any;
    ontouchend?: null | (this: GlobalEventHandlers, ev: TouchEvent) => any;
    ontouchmove?: null | (this: GlobalEventHandlers, ev: TouchEvent) => any;
    ontouchstart?: null | (this: GlobalEventHandlers, ev: TouchEvent) => any;
    ontransitioncancel:
        | null
        | (this: GlobalEventHandlers, ev: TransitionEvent) => any;
    ontransitionend:
        | null
        | (this: GlobalEventHandlers, ev: TransitionEvent) => any;
    ontransitionrun:
        | null
        | (this: GlobalEventHandlers, ev: TransitionEvent) => any;
    ontransitionstart:
        | null
        | (this: GlobalEventHandlers, ev: TransitionEvent) => any;
    onvolumechange: null | (this: GlobalEventHandlers, ev: Event) => any;
    onwaiting: null | (this: GlobalEventHandlers, ev: Event) => any;
    onwebkitanimationend: null | (this: GlobalEventHandlers, ev: Event) => any;
    onwebkitanimationiteration:
        | null
        | (this: GlobalEventHandlers, ev: Event) => any;
    onwebkitanimationstart:
        | null
        | (this: GlobalEventHandlers, ev: Event) => any;
    onwebkittransitionend: null | (this: GlobalEventHandlers, ev: Event) => any;
    onwheel: null | (this: GlobalEventHandlers, ev: WheelEvent) => any;
    addEventListener<K extends keyof GlobalEventHandlersEventMap>(
        type: K,
        listener: (
            this: GlobalEventHandlers,
            ev: GlobalEventHandlersEventMap[K],
        ) => any,
        options?: boolean | AddEventListenerOptions,
    ): void;
    addEventListener(
        type: string,
        listener: EventListenerOrEventListenerObject,
        options?: boolean | AddEventListenerOptions,
    ): void;
    removeEventListener<K extends keyof GlobalEventHandlersEventMap>(
        type: K,
        listener: (
            this: GlobalEventHandlers,
            ev: GlobalEventHandlersEventMap[K],
        ) => any,
        options?: boolean | EventListenerOptions,
    ): void;
    removeEventListener(
        type: string,
        listener: EventListenerOrEventListenerObject,
        options?: boolean | EventListenerOptions,
    ): void;
}

Hierarchy (View Summary)

Properties

onabort: null | (this: GlobalEventHandlers, ev: UIEvent) => any

Fires when the user aborts the download.

The event.

MDN Reference

onanimationcancel: null | (this: GlobalEventHandlers, ev: AnimationEvent) => any
onanimationend: null | (this: GlobalEventHandlers, ev: AnimationEvent) => any
onanimationiteration:
    | null
    | (this: GlobalEventHandlers, ev: AnimationEvent) => any
onanimationstart: null | (this: GlobalEventHandlers, ev: AnimationEvent) => any
onauxclick: null | (this: GlobalEventHandlers, ev: MouseEvent) => any
onbeforeinput: null | (this: GlobalEventHandlers, ev: InputEvent) => any
onbeforetoggle: null | (this: GlobalEventHandlers, ev: Event) => any
onblur: null | (this: GlobalEventHandlers, ev: FocusEvent) => any

Fires when the object loses the input focus.

The focus event.

MDN Reference

oncancel: null | (this: GlobalEventHandlers, ev: Event) => any
oncanplay: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when playback is possible, but would require further buffering.

The event.

MDN Reference

oncanplaythrough: null | (this: GlobalEventHandlers, ev: Event) => any
onchange: null | (this: GlobalEventHandlers, ev: Event) => any

Fires when the contents of the object or selection have changed.

The event.

MDN Reference

onclick: null | (this: GlobalEventHandlers, ev: MouseEvent) => any

Fires when the user clicks the left mouse button on the object

The mouse event.

MDN Reference

onclose: null | (this: GlobalEventHandlers, ev: Event) => any
oncontextlost: null | (this: GlobalEventHandlers, ev: Event) => any
oncontextmenu: null | (this: GlobalEventHandlers, ev: MouseEvent) => any

Fires when the user clicks the right mouse button in the client area, opening the context menu.

The mouse event.

MDN Reference

oncontextrestored: null | (this: GlobalEventHandlers, ev: Event) => any
oncopy: null | (this: GlobalEventHandlers, ev: ClipboardEvent) => any
oncuechange: null | (this: GlobalEventHandlers, ev: Event) => any
oncut: null | (this: GlobalEventHandlers, ev: ClipboardEvent) => any
ondblclick: null | (this: GlobalEventHandlers, ev: MouseEvent) => any

Fires when the user double-clicks the object.

The mouse event.

MDN Reference

ondrag: null | (this: GlobalEventHandlers, ev: DragEvent) => any

Fires on the source object continuously during a drag operation.

The event.

MDN Reference

ondragend: null | (this: GlobalEventHandlers, ev: DragEvent) => any

Fires on the source object when the user releases the mouse at the close of a drag operation.

The event.

MDN Reference

ondragenter: null | (this: GlobalEventHandlers, ev: DragEvent) => any

Fires on the target element when the user drags the object to a valid drop target.

The drag event.

MDN Reference

ondragleave: null | (this: GlobalEventHandlers, ev: DragEvent) => any

Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.

The drag event.

MDN Reference

ondragover: null | (this: GlobalEventHandlers, ev: DragEvent) => any

Fires on the target element continuously while the user drags the object over a valid drop target.

The event.

MDN Reference

ondragstart: null | (this: GlobalEventHandlers, ev: DragEvent) => any

Fires on the source object when the user starts to drag a text selection or selected object.

The event.

MDN Reference

ondrop: null | (this: GlobalEventHandlers, ev: DragEvent) => any
ondurationchange: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the duration attribute is updated.

The event.

MDN Reference

onemptied: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the media element is reset to its initial state.

The event.

MDN Reference

onended: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the end of playback is reached.

The event

MDN Reference

Fires when an error occurs during object loading.

The event.

MDN Reference

onfocus: null | (this: GlobalEventHandlers, ev: FocusEvent) => any

Fires when the object receives focus.

The event.

MDN Reference

onformdata: null | (this: GlobalEventHandlers, ev: FormDataEvent) => any
ongotpointercapture: null | (this: GlobalEventHandlers, ev: PointerEvent) => any
oninput: null | (this: GlobalEventHandlers, ev: Event) => any
oninvalid: null | (this: GlobalEventHandlers, ev: Event) => any
onkeydown: null | (this: GlobalEventHandlers, ev: KeyboardEvent) => any

Fires when the user presses a key.

The keyboard event

MDN Reference

onkeypress: null | (this: GlobalEventHandlers, ev: KeyboardEvent) => any

Fires when the user presses an alphanumeric key.

The event.

MDN Reference

onkeyup: null | (this: GlobalEventHandlers, ev: KeyboardEvent) => any

Fires when the user releases a key.

The keyboard event

MDN Reference

onload: null | (this: GlobalEventHandlers, ev: Event) => any

Fires immediately after the browser loads the object.

The event.

MDN Reference

onloadeddata: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when media data is loaded at the current playback position.

The event.

MDN Reference

onloadedmetadata: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the duration and dimensions of the media have been determined.

The event.

MDN Reference

onloadstart: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when Internet Explorer begins looking for media data.

The event.

MDN Reference

onlostpointercapture:
    | null
    | (this: GlobalEventHandlers, ev: PointerEvent) => any
onmousedown: null | (this: GlobalEventHandlers, ev: MouseEvent) => any

Fires when the user clicks the object with either mouse button.

The mouse event.

MDN Reference

onmouseenter: null | (this: GlobalEventHandlers, ev: MouseEvent) => any
onmouseleave: null | (this: GlobalEventHandlers, ev: MouseEvent) => any
onmousemove: null | (this: GlobalEventHandlers, ev: MouseEvent) => any

Fires when the user moves the mouse over the object.

The mouse event.

MDN Reference

onmouseout: null | (this: GlobalEventHandlers, ev: MouseEvent) => any

Fires when the user moves the mouse pointer outside the boundaries of the object.

The mouse event.

MDN Reference

onmouseover: null | (this: GlobalEventHandlers, ev: MouseEvent) => any

Fires when the user moves the mouse pointer into the object.

The mouse event.

MDN Reference

onmouseup: null | (this: GlobalEventHandlers, ev: MouseEvent) => any

Fires when the user releases a mouse button while the mouse is over the object.

The mouse event.

MDN Reference

onpaste: null | (this: GlobalEventHandlers, ev: ClipboardEvent) => any
onpause: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when playback is paused.

The event.

MDN Reference

onplay: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the play method is requested.

The event.

MDN Reference

onplaying: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the audio or video has started playing.

The event.

MDN Reference

onpointercancel: null | (this: GlobalEventHandlers, ev: PointerEvent) => any
onpointerdown: null | (this: GlobalEventHandlers, ev: PointerEvent) => any
onpointerenter: null | (this: GlobalEventHandlers, ev: PointerEvent) => any
onpointerleave: null | (this: GlobalEventHandlers, ev: PointerEvent) => any
onpointermove: null | (this: GlobalEventHandlers, ev: PointerEvent) => any
onpointerout: null | (this: GlobalEventHandlers, ev: PointerEvent) => any
onpointerover: null | (this: GlobalEventHandlers, ev: PointerEvent) => any
onpointerup: null | (this: GlobalEventHandlers, ev: PointerEvent) => any
onprogress:
    | null
    | (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any

Occurs to indicate progress while downloading media data.

The event.

MDN Reference

onratechange: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the playback rate is increased or decreased.

The event.

MDN Reference

onreset: null | (this: GlobalEventHandlers, ev: Event) => any

Fires when the user resets a form.

The event.

MDN Reference

onresize: null | (this: GlobalEventHandlers, ev: UIEvent) => any
onscroll: null | (this: GlobalEventHandlers, ev: Event) => any

Fires when the user repositions the scroll box in the scroll bar on the object.

The event.

MDN Reference

onscrollend: null | (this: GlobalEventHandlers, ev: Event) => any
onsecuritypolicyviolation:
    | null
    | (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any
onseeked: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the seek operation ends.

The event.

MDN Reference

onseeking: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the current playback position is moved.

The event.

MDN Reference

onselect: null | (this: GlobalEventHandlers, ev: Event) => any

Fires when the current selection changes.

The event.

MDN Reference

onselectionchange: null | (this: GlobalEventHandlers, ev: Event) => any
onselectstart: null | (this: GlobalEventHandlers, ev: Event) => any
onslotchange: null | (this: GlobalEventHandlers, ev: Event) => any
onstalled: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the download has stopped.

The event.

MDN Reference

onsubmit: null | (this: GlobalEventHandlers, ev: SubmitEvent) => any
onsuspend: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs if the load operation has been intentionally halted.

The event.

MDN Reference

ontimeupdate: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs to indicate the current playback position.

The event.

MDN Reference

ontoggle: null | (this: GlobalEventHandlers, ev: Event) => any
ontouchcancel?: null | (this: GlobalEventHandlers, ev: TouchEvent) => any
ontouchend?: null | (this: GlobalEventHandlers, ev: TouchEvent) => any
ontouchmove?: null | (this: GlobalEventHandlers, ev: TouchEvent) => any
ontouchstart?: null | (this: GlobalEventHandlers, ev: TouchEvent) => any
ontransitioncancel:
    | null
    | (this: GlobalEventHandlers, ev: TransitionEvent) => any
ontransitionend: null | (this: GlobalEventHandlers, ev: TransitionEvent) => any
ontransitionrun: null | (this: GlobalEventHandlers, ev: TransitionEvent) => any
ontransitionstart:
    | null
    | (this: GlobalEventHandlers, ev: TransitionEvent) => any
onvolumechange: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when the volume is changed, or playback is muted or unmuted.

The event.

MDN Reference

onwaiting: null | (this: GlobalEventHandlers, ev: Event) => any

Occurs when playback stops because the next frame of a video resource is not available.

The event.

MDN Reference

onwebkitanimationend: null | (this: GlobalEventHandlers, ev: Event) => any

This is a legacy alias of onanimationend.

MDN Reference

onwebkitanimationiteration: null | (this: GlobalEventHandlers, ev: Event) => any

This is a legacy alias of onanimationiteration.

MDN Reference

onwebkitanimationstart: null | (this: GlobalEventHandlers, ev: Event) => any

This is a legacy alias of onanimationstart.

MDN Reference

onwebkittransitionend: null | (this: GlobalEventHandlers, ev: Event) => any

This is a legacy alias of ontransitionend.

MDN Reference

onwheel: null | (this: GlobalEventHandlers, ev: WheelEvent) => any

Methods