GlobalEventHandlers

The GlobalEventHandlers mixin describes the event handlers common to several interfaces like HTMLElement, Document, or Window. Each of these interfaces can implement more event handlers.

GlobalEventHandlers is a mixin and not an interface and no object of this type can be created.

Properties

The events properties, of the form onXYZ, are defined on the GlobalEventHandlers, and implemented by HTMLElement, Document, Window, and WorkerGlobalScope (en-US) for Web Workers.

GlobalEventHandlers.onabort

Is an event handler representing the code to be called when the abort (en-US) event is raised.

GlobalEventHandlers.onblur

Is an event handler representing the code to be called when the blur (en-US) event is raised.

GlobalEventHandlers.onerror

Is an OnErrorEventHandler representing the code to be called when the error (en-US) event is raised.

GlobalEventHandlers.onfocus

Is an event handler representing the code to be called when the focus (en-US) event is raised.

GlobalEventHandlers.oncancel

Is an event handler representing the code to be called when the cancel event is raised.

GlobalEventHandlers.oncanplay (en-US)

Is an event handler representing the code to be called when the canplay (en-US) event is raised.

GlobalEventHandlers.oncanplaythrough (en-US)

Is an event handler representing the code to be called when the canplaythrough (en-US) event is raised.

GlobalEventHandlers.onchange

Is an event handler representing the code to be called when the change (en-US) event is raised.

GlobalEventHandlers.onclick

Is an event handler representing the code to be called when the click (en-US) event is raised.

GlobalEventHandlers.onclose (en-US)

Is an event handler representing the code to be called when the close event is raised.

GlobalEventHandlers.oncontextmenu

Is an event handler representing the code to be called when the contextmenu (en-US) event is raised.

GlobalEventHandlers.oncuechange (en-US)

Is an event handler representing the code to be called when the cuechange (en-US) event is raised.

GlobalEventHandlers.ondblclick (en-US)

Is an event handler representing the code to be called when the dblclick (en-US) event is raised.

GlobalEventHandlers.ondrag (en-US)

Is an event handler representing the code to be called when the drag (en-US) event is raised.

GlobalEventHandlers.ondragend (en-US)

Is an event handler representing the code to be called when the dragend (en-US) event is raised.

GlobalEventHandlers.ondragenter (en-US)

Is an event handler representing the code to be called when the dragenter (en-US) event is raised.

GlobalEventHandlers.ondragexit (en-US)

Is an event handler representing the code to be called when the dragexit event is raised.

GlobalEventHandlers.ondragleave (en-US)

Is an event handler representing the code to be called when the dragleave (en-US) event is raised.

GlobalEventHandlers.ondragover (en-US)

Is an event handler representing the code to be called when the dragover (en-US) event is raised.

GlobalEventHandlers.ondragstart (en-US)

Is an event handler representing the code to be called when the dragstart (en-US) event is raised.

GlobalEventHandlers.ondrop (en-US)

Is an event handler representing the code to be called when the drop (en-US) event is raised.

GlobalEventHandlers.ondurationchange (en-US)

Is an event handler representing the code to be called when the durationchange (en-US) event is raised.

GlobalEventHandlers.onemptied (en-US)

Is an event handler representing the code to be called when the emptied (en-US) event is raised.

GlobalEventHandlers.onended (en-US)

Is an event handler representing the code to be called when the ended (en-US) event is raised.

GlobalEventHandlers.oninput (en-US)

Is an event handler representing the code to be called when the input (en-US) event is raised.

GlobalEventHandlers.oninvalid (en-US)

Is an event handler representing the code to be called when the invalid (en-US) event is raised.

GlobalEventHandlers.onkeydown (en-US)

Is an event handler representing the code to be called when the keydown (en-US) event is raised.

GlobalEventHandlers.onkeypress (en-US)

Is an event handler representing the code to be called when the keypress (en-US) event is raised.

GlobalEventHandlers.onkeyup

Is an event handler representing the code to be called when the keyup (en-US) event is raised.

GlobalEventHandlers.onload

Is an event handler representing the code to be called when the load (en-US) event is raised.

GlobalEventHandlers.onloadeddata (en-US)

Is an event handler representing the code to be called when the loadeddata (en-US) event is raised.

GlobalEventHandlers.onloadedmetadata (en-US)

Is an event handler representing the code to be called when the loadedmetadata (en-US) event is raised.

GlobalEventHandlers.onloadstart (en-US)

Is an event handler representing the code to be called when the loadstart (en-US) event is raised.

GlobalEventHandlers.onmousedown (en-US)

Is an event handler representing the code to be called when the mousedown (en-US) event is raised.

GlobalEventHandlers.onmouseenter (en-US)

Is an event handler representing the code to be called when the mouseenter (en-US) event is raised.

GlobalEventHandlers.onmouseleave (en-US)

Is an event handler representing the code to be called when the mouseleave (en-US) event is raised.

GlobalEventHandlers.onmousemove (en-US)

Is an event handler representing the code to be called when the mousemove (en-US) event is raised.

GlobalEventHandlers.onmouseout (en-US)

Is an event handler representing the code to be called when the mouseout (en-US) event is raised.

GlobalEventHandlers.onmouseover (en-US)

Is an event handler representing the code to be called when the mouseover (en-US) event is raised.

GlobalEventHandlers.onmouseup (en-US)

Is an event handler representing the code to be called when the mouseup (en-US) event is raised.

GlobalEventHandlers.onmousewheel (en-US)

Is an event handler representing the code to be called when the mousewheel (en-US) event is raised.

GlobalEventHandlers.onpause (en-US)

Is an event handler representing the code to be called when the pause (en-US) event is raised.

GlobalEventHandlers.onplay (en-US)

Is an event handler representing the code to be called when the play (en-US) event is raised.

GlobalEventHandlers.onplaying (en-US)

Is an event handler representing the code to be called when the playing (en-US) event is raised.

GlobalEventHandlers.onpointerdown (en-US)

Is an event handler representing the code to be called when the pointerdown event is raised.

GlobalEventHandlers.onpointermove (en-US)

Is an event handler representing the code to be called when the pointermove event is raised.

GlobalEventHandlers.onpointerup (en-US)

Is an event handler representing the code to be called when the pointerup event is raised.

GlobalEventHandlers.onpointercancel (en-US)

Is an event handler representing the code to be called when the pointercancel event is raised.

GlobalEventHandlers.onpointerover (en-US)

Is an event handler representing the code to be called when the pointerover event is raised.

GlobalEventHandlers.onpointerout (en-US)

Is an event handler representing the code to be called when the pointerout event is raised.

GlobalEventHandlers.onpointerenter (en-US)

Is an event handler representing the code to be called when the pointerevent event is raised.

GlobalEventHandlers.onpointerleave (en-US)

Is an event handler representing the code to be called when the pointerleave event is raised.

GlobalEventHandlers.onpointerlockchange Experimental

Is an event handler representing the code to be called when the pointerlockchange (en-US) event is raised.

GlobalEventHandlers.onpointerlockerror Experimental

Is an event handler representing the code to be called when the pointerlockerror (en-US) event is raised.

GlobalEventHandlers.onprogress

Is an event handler representing the code to be called when the progress (en-US) event is raised.

GlobalEventHandlers.onratechange

Is an event handler representing the code to be called when the ratechange (en-US) event is raised.

GlobalEventHandlers.onreset (en-US)

Is an event handler representing the code to be called when the reset (en-US) event is raised.

GlobalEventHandlers.onscroll

Is an event handler representing the code to be called when the scroll (en-US) event is raised.

GlobalEventHandlers.onseeked

Is an event handler representing the code to be called when the seeked (en-US) event is raised.

GlobalEventHandlers.onseeking

Is an event handler representing the code to be called when the seeking (en-US) event is raised.

GlobalEventHandlers.onselect (en-US)

Is an event handler representing the code to be called when the select (en-US) event is raised.

GlobalEventHandlers.onselectionchange (en-US)

Is an event handler representing the code to be called when the selectionchange event is raised.

GlobalEventHandlers.onshow

Is an event handler representing the code to be called when the show event is raised.

GlobalEventHandlers.onsort Experimental

Is an event handler representing the code to be called when the sort event is raised.

GlobalEventHandlers.onstalled

Is an event handler representing the code to be called when the stalled (en-US) event is raised.

GlobalEventHandlers.onsubmit (en-US)

Is an event handler representing the code to be called when the submit (en-US) event is raised.

GlobalEventHandlers.onsuspend

Is an event handler representing the code to be called when the suspend (en-US) event is raised.

GlobalEventHandlers.ontimeupdate

Is an event handler representing the code to be called when the timeupdate (en-US) event is raised.

GlobalEventHandlers.onvolumechange

Is an event handler representing the code to be called when the volumechange (en-US) event is raised.

GlobalEventHandlers.ontouchcancel (en-US)

Is an event handler representing the code to be called when the touchcancel (en-US) event is raised.

GlobalEventHandlers.ontouchend (en-US)

Is an event handler representing the code to be called when the touchend (en-US) event is raised.

GlobalEventHandlers.ontouchmove (en-US)

Is an event handler representing the code to be called when the touchmove (en-US) event is raised.

GlobalEventHandlers.ontouchstart (en-US)

Is an event handler representing the code to be called when the touchstart (en-US) event is raised.

GlobalEventHandlers.onwaiting

Is an event handler representing the code to be called when the waiting (en-US) event is raised.

Methods

This interface defines no method.

Specifications

Specification Status Comment
Selection API
The definition of 'Extension to GlobalEventHandlers' in that specification.
Rascunho atual Adds onselectionchange.
Pointer Lock
The definition of 'Extension of Document' in that specification.
Candidata a Recomendação Adds onpointerlockchange and onpointerlockerror on Document. It is experimentally implemented on GlobalEventHandlers.
HTML Living Standard
The definition of 'GlobalEventHandlers' in that specification.
Padrão em tempo real No change since the latest snapshot, HTML 5.1.
HTML 5.1
The definition of 'GlobalEventHandlers' in that specification.
Recomendação Snapshot of HTML Living Standard. Added onsort since the HTML5 snapshot.
HTML5
The definition of 'GlobalEventHandlers' in that specification.
Recomendação Snapshot of HTML Living Standard. Creation of GlobalEventHandlers (properties where on the target before it).

See also