interface GlobalEventHandlers {
    onabort: ((this, ev) => any);
    onanimationcancel: ((this, ev) => any);
    onanimationend: ((this, ev) => any);
    onanimationiteration: ((this, ev) => any);
    onanimationstart: ((this, ev) => any);
    onauxclick: ((this, ev) => any);
    onbeforeinput: ((this, ev) => any);
    onblur: ((this, ev) => any);
    oncancel: ((this, ev) => any);
    oncanplay: ((this, ev) => any);
    oncanplaythrough: ((this, ev) => any);
    onchange: ((this, ev) => any);
    onclick: ((this, ev) => any);
    onclose: ((this, ev) => any);
    oncontextmenu: ((this, ev) => any);
    oncuechange: ((this, ev) => any);
    ondblclick: ((this, ev) => any);
    ondrag: ((this, ev) => any);
    ondragend: ((this, ev) => any);
    ondragenter: ((this, ev) => any);
    ondragleave: ((this, ev) => any);
    ondragover: ((this, ev) => any);
    ondragstart: ((this, ev) => any);
    ondrop: ((this, ev) => any);
    ondurationchange: ((this, ev) => any);
    onemptied: ((this, ev) => any);
    onended: ((this, ev) => any);
    onerror: OnErrorEventHandlerNonNull;
    onfocus: ((this, ev) => any);
    onformdata: ((this, ev) => any);
    ongotpointercapture: ((this, ev) => any);
    oninput: ((this, ev) => any);
    oninvalid: ((this, ev) => any);
    onkeydown: ((this, ev) => any);
    onkeypress: ((this, ev) => any);
    onkeyup: ((this, ev) => any);
    onload: ((this, ev) => any);
    onloadeddata: ((this, ev) => any);
    onloadedmetadata: ((this, ev) => any);
    onloadstart: ((this, ev) => any);
    onlostpointercapture: ((this, ev) => any);
    onmousedown: ((this, ev) => any);
    onmouseenter: ((this, ev) => any);
    onmouseleave: ((this, ev) => any);
    onmousemove: ((this, ev) => any);
    onmouseout: ((this, ev) => any);
    onmouseover: ((this, ev) => any);
    onmouseup: ((this, ev) => any);
    onpause: ((this, ev) => any);
    onplay: ((this, ev) => any);
    onplaying: ((this, ev) => any);
    onpointercancel: ((this, ev) => any);
    onpointerdown: ((this, ev) => any);
    onpointerenter: ((this, ev) => any);
    onpointerleave: ((this, ev) => any);
    onpointermove: ((this, ev) => any);
    onpointerout: ((this, ev) => any);
    onpointerover: ((this, ev) => any);
    onpointerup: ((this, ev) => any);
    onprogress: ((this, ev) => any);
    onratechange: ((this, ev) => any);
    onreset: ((this, ev) => any);
    onresize: ((this, ev) => any);
    onscroll: ((this, ev) => any);
    onsecuritypolicyviolation: ((this, ev) => any);
    onseeked: ((this, ev) => any);
    onseeking: ((this, ev) => any);
    onselect: ((this, ev) => any);
    onselectionchange: ((this, ev) => any);
    onselectstart: ((this, ev) => any);
    onslotchange: ((this, ev) => any);
    onstalled: ((this, ev) => any);
    onsubmit: ((this, ev) => any);
    onsuspend: ((this, ev) => any);
    ontimeupdate: ((this, ev) => any);
    ontoggle: ((this, ev) => any);
    ontouchcancel?: ((this, ev) => any);
    ontouchend?: ((this, ev) => any);
    ontouchmove?: ((this, ev) => any);
    ontouchstart?: ((this, ev) => any);
    ontransitioncancel: ((this, ev) => any);
    ontransitionend: ((this, ev) => any);
    ontransitionrun: ((this, ev) => any);
    ontransitionstart: ((this, ev) => any);
    onvolumechange: ((this, ev) => any);
    onwaiting: ((this, ev) => any);
    onwebkitanimationend: ((this, ev) => any);
    onwebkitanimationiteration: ((this, ev) => any);
    onwebkitanimationstart: ((this, ev) => any);
    onwebkittransitionend: ((this, ev) => any);
    onwheel: ((this, ev) => any);
    addEventListener<K>(type, listener, options?): void;
    addEventListener(type, listener, options?): void;
    removeEventListener<K>(type, listener, options?): void;
    removeEventListener(type, listener, options?): void;
}

Hierarchy

Properties

onabort: ((this, ev) => any)

Type declaration

onanimationcancel: ((this, ev) => any)

Type declaration

onanimationend: ((this, ev) => any)

Type declaration

onanimationiteration: ((this, ev) => any)

Type declaration

onanimationstart: ((this, ev) => any)

Type declaration

onauxclick: ((this, ev) => any)

Type declaration

onbeforeinput: ((this, ev) => any)

Type declaration

onblur: ((this, ev) => any)

Type declaration

oncancel: ((this, ev) => any)

Type declaration

oncanplay: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when playback is possible, but would require further buffering.

      Parameters

      Returns any

oncanplaythrough: ((this, ev) => any)

Type declaration

onchange: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the contents of the object or selection have changed.

      Parameters

      Returns any

onclick: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the user clicks the left mouse button on the object

      Parameters

      Returns any

onclose: ((this, ev) => any)

Type declaration

oncontextmenu: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the user clicks the right mouse button in the client area, opening the context menu.

      Parameters

      Returns any

oncuechange: ((this, ev) => any)

Type declaration

ondblclick: ((this, ev) => any)

Type declaration

ondrag: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires on the source object continuously during a drag operation.

      Parameters

      Returns any

ondragend: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires on the source object when the user releases the mouse at the close of a drag operation.

      Parameters

      Returns any

ondragenter: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires on the target element when the user drags the object to a valid drop target.

      Parameters

      Returns any

ondragleave: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.

      Parameters

      Returns any

ondragover: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires on the target element continuously while the user drags the object over a valid drop target.

      Parameters

      Returns any

ondragstart: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires on the source object when the user starts to drag a text selection or selected object.

      Parameters

      Returns any

ondrop: ((this, ev) => any)

Type declaration

ondurationchange: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the duration attribute is updated.

      Parameters

      Returns any

onemptied: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the media element is reset to its initial state.

      Parameters

      Returns any

onended: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the end of playback is reached.

      Parameters

      Returns any

Fires when an error occurs during object loading.

Param: ev

The event.

onfocus: ((this, ev) => any)

Type declaration

onformdata: ((this, ev) => any)

Type declaration

ongotpointercapture: ((this, ev) => any)

Type declaration

oninput: ((this, ev) => any)

Type declaration

oninvalid: ((this, ev) => any)

Type declaration

onkeydown: ((this, ev) => any)

Type declaration

onkeypress: ((this, ev) => any)

Type declaration

onkeyup: ((this, ev) => any)

Type declaration

onload: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires immediately after the browser loads the object.

      Parameters

      Returns any

onloadeddata: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when media data is loaded at the current playback position.

      Parameters

      Returns any

onloadedmetadata: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the duration and dimensions of the media have been determined.

      Parameters

      Returns any

onloadstart: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when Internet Explorer begins looking for media data.

      Parameters

      Returns any

onlostpointercapture: ((this, ev) => any)

Type declaration

onmousedown: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the user clicks the object with either mouse button.

      Parameters

      Returns any

onmouseenter: ((this, ev) => any)

Type declaration

onmouseleave: ((this, ev) => any)

Type declaration

onmousemove: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the user moves the mouse over the object.

      Parameters

      Returns any

onmouseout: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the user moves the mouse pointer outside the boundaries of the object.

      Parameters

      Returns any

onmouseover: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the user moves the mouse pointer into the object.

      Parameters

      Returns any

onmouseup: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the user releases a mouse button while the mouse is over the object.

      Parameters

      Returns any

onpause: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when playback is paused.

      Parameters

      Returns any

onplay: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the play method is requested.

      Parameters

      Returns any

onplaying: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the audio or video has started playing.

      Parameters

      Returns any

onpointercancel: ((this, ev) => any)

Type declaration

onpointerdown: ((this, ev) => any)

Type declaration

onpointerenter: ((this, ev) => any)

Type declaration

onpointerleave: ((this, ev) => any)

Type declaration

onpointermove: ((this, ev) => any)

Type declaration

onpointerout: ((this, ev) => any)

Type declaration

onpointerover: ((this, ev) => any)

Type declaration

onpointerup: ((this, ev) => any)

Type declaration

onprogress: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs to indicate progress while downloading media data.

      Parameters

      Returns any

onratechange: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the playback rate is increased or decreased.

      Parameters

      Returns any

onreset: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the user resets a form.

      Parameters

      Returns any

onresize: ((this, ev) => any)

Type declaration

onscroll: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the user repositions the scroll box in the scroll bar on the object.

      Parameters

      Returns any

onsecuritypolicyviolation: ((this, ev) => any)

Type declaration

onseeked: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the seek operation ends.

      Parameters

      Returns any

onseeking: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the current playback position is moved.

      Parameters

      Returns any

onselect: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Fires when the current selection changes.

      Parameters

      Returns any

onselectionchange: ((this, ev) => any)

Type declaration

onselectstart: ((this, ev) => any)

Type declaration

onslotchange: ((this, ev) => any)

Type declaration

onstalled: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the download has stopped.

      Parameters

      Returns any

onsubmit: ((this, ev) => any)

Type declaration

onsuspend: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs if the load operation has been intentionally halted.

      Parameters

      Returns any

ontimeupdate: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs to indicate the current playback position.

      Parameters

      Returns any

ontoggle: ((this, ev) => any)

Type declaration

ontouchcancel?: ((this, ev) => any)

Type declaration

ontouchend?: ((this, ev) => any)

Type declaration

ontouchmove?: ((this, ev) => any)

Type declaration

ontouchstart?: ((this, ev) => any)

Type declaration

ontransitioncancel: ((this, ev) => any)

Type declaration

ontransitionend: ((this, ev) => any)

Type declaration

ontransitionrun: ((this, ev) => any)

Type declaration

ontransitionstart: ((this, ev) => any)

Type declaration

onvolumechange: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when the volume is changed, or playback is muted or unmuted.

      Parameters

      Returns any

onwaiting: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Occurs when playback stops because the next frame of a video resource is not available.

      Parameters

      Returns any

onwebkitanimationend: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Parameters

      Returns any

      Deprecated

      This is a legacy alias of onanimationend.

onwebkitanimationiteration: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Parameters

      Returns any

      Deprecated

      This is a legacy alias of onanimationiteration.

onwebkitanimationstart: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Parameters

      Returns any

      Deprecated

      This is a legacy alias of onanimationstart.

onwebkittransitionend: ((this, ev) => any)

Type declaration

    • (this, ev): any
    • Parameters

      Returns any

      Deprecated

      This is a legacy alias of ontransitionend.

onwheel: ((this, ev) => any)

Type declaration

Methods

Generated using TypeDoc