Liking cljdoc? Tell your friends :D
ClojureScript only.

web.dom.GlobalEventHandlers

The GlobalEventHandlers mixin describes the event handlers common several interfaces like web.dom.HTMLElement, web.Document, web.Window.

The GlobalEventHandlers mixin describes the event handlers common
several interfaces like `web.dom.HTMLElement`, `web.Document`,
`web.Window`.
raw docstring

onabortcljs

(onabort this)

Property.

[Draft] [Experimental]

The onabort property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing abort events sent to the window.

window.onabort = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onabort

Property.

[Draft]
[Experimental]

The onabort property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing abort events sent to the window.

`window.onabort = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onabort`
sourceraw docstring

onanimationcancelcljs

(onanimationcancel this)

Property.

The onanimationcancel property of the web.dom.GlobalEventHandlers is the EventHandler for processing animationcancel events.

`var animCancelHandler = target.onanimationcancel;

target.onanimationcancel = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationcancel

Property.

The onanimationcancel property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing animationcancel events.

`var animCancelHandler = target.onanimationcancel;

target.onanimationcancel = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationcancel`
sourceraw docstring

onanimationendcljs

(onanimationend this)

Property.

The onanimationend property of the web.dom.GlobalEventHandlers is the EventHandler for processing animationend events.

`var animEndHandler = target.onanimationend;

target.onanimationend = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationend

Property.

The onanimationend property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing animationend events.

`var animEndHandler = target.onanimationend;

target.onanimationend = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationend`
sourceraw docstring

onanimationiterationcljs

(onanimationiteration this)

Property.

[Draft]

The onanimationiteration property of the web.dom.GlobalEventHandlers is the EventHandler for processing animationiteration events.

`var animIterationHandler = target.onanimationiteration;

target.onanimationiteration = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationiteration

Property.

[Draft]

The onanimationiteration property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing animationiteration events.

`var animIterationHandler = target.onanimationiteration;

target.onanimationiteration = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationiteration`
sourceraw docstring

onauxclickcljs

(onauxclick this)

Property.

[Experimental]

The onauxclick property of the web.dom.GlobalEventHandlers is an EventHandler for processing auxclick events.

target.onauxclick = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onauxclick

Property.

[Experimental]

The onauxclick property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` for processing auxclick events.

`target.onauxclick = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onauxclick`
sourceraw docstring

onblurcljs

(onblur this)

Property.

The onblur property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing blur events. It's available web.Element, web.Document, and web.Window.

target.onblur = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onblur

Property.

The onblur property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing blur events. It's available
`web.Element`, `web.Document`, and `web.Window`.

`target.onblur = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onblur`
sourceraw docstring

oncancelcljs

(oncancel this)

Property.

The oncancel property of the web.dom.GlobalEventHandlers mixin an EventHandler for processing cancel events sent to a <dialog>

target.oncancel = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncancel

Property.

The oncancel property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` for processing cancel events sent to a `<dialog>`

`target.oncancel = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncancel`
sourceraw docstring

oncanplaycljs

(oncanplay this)

Property.

The oncanplay property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing canplay events.

`element.oncanplay = handlerFunction; var handlerFunction = element.oncanplay;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncanplay

Property.

The oncanplay property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing canplay events.

`element.oncanplay = handlerFunction;
var handlerFunction = element.oncanplay;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncanplay`
sourceraw docstring

oncanplaythroughcljs

(oncanplaythrough this)

Property.

The oncanplaythrough property of the web.dom.GlobalEventHandlers is the EventHandler for processing canplaythrough events.

`element.oncanplaythrough = handlerFunction; var handlerFunction = element.oncanplaythrough;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncanplaythrough

Property.

The oncanplaythrough property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing canplaythrough events.

`element.oncanplaythrough = handlerFunction;
var handlerFunction = element.oncanplaythrough;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncanplaythrough`
sourceraw docstring

onchangecljs

(onchange this)

Property.

The onchange property of the web.dom.GlobalEventHandlers mixin an EventHandler for processing change events.

`target.onchange = functionRef;

functionRef is a function name or a function expression. The function receives an web.Event object as its sole argument.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onchange

Property.

The onchange property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` for processing change events.

`target.onchange = functionRef;

functionRef is a function name or a function expression. The function receives an `web.Event` object as its sole argument.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onchange`
sourceraw docstring

onclickcljs

(onclick this)

Property.

The onclick property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing click events on a given element.

target.onclick = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onclick

Property.

The onclick property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing click events on a given element.

`target.onclick = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onclick`
sourceraw docstring

onclosecljs

(onclose this)

Property.

[Experimental]

The onclose property of the web.dom.GlobalEventHandlers mixin an EventHandler for processing close events sent to a <dialog>

target.onclose = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onclose

Property.

[Experimental]

The onclose property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` for processing close events sent to a `<dialog>`

`target.onclose = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onclose`
sourceraw docstring

oncontextmenucljs

(oncontextmenu this)

Property.

The oncontextmenu property of the web.dom.GlobalEventHandlers is an EventHandler that processes contextmenu events.

target.oncontextmenu = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncontextmenu

Property.

The oncontextmenu property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes contextmenu events.

`target.oncontextmenu = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncontextmenu`
sourceraw docstring

oncuechangecljs

(oncuechange this)

Property.

The oncuechange property of the web.dom.GlobalEventHandlers is the EventHandler for processing cuechange events.

`element.oncuechange = handlerFunction; var handlerFunction = element.oncuechange;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncuechange

Property.

The oncuechange property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing cuechange events.

`element.oncuechange = handlerFunction;
var handlerFunction = element.oncuechange;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncuechange`
sourceraw docstring

ondblclickcljs

(ondblclick this)

Property.

The ondblclick property of the web.dom.GlobalEventHandlers is an EventHandler that processes dblclick events on the given

target.ondblclick = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ondblclick

Property.

The ondblclick property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes dblclick events on the given

`target.ondblclick = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ondblclick`
sourceraw docstring

ondurationchangecljs

(ondurationchange this)

Property.

The ondurationchange property of the web.dom.GlobalEventHandlers is the EventHandler for processing durationchange events.

`element.ondurationchange = handlerFunction; var handlerFunction = element.ondurationchange;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ondurationchange

Property.

The ondurationchange property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing durationchange events.

`element.ondurationchange = handlerFunction;
var handlerFunction = element.ondurationchange;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ondurationchange`
sourceraw docstring

onendedcljs

(onended this)

Property.

The onended property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing ended events.

`element.onended = handlerFunction; var handlerFunction = element.onended;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onended

Property.

The onended property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing ended events.

`element.onended = handlerFunction;
var handlerFunction = element.onended;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onended`
sourceraw docstring

onerrorcljs

(onerror this)

Property.

The onerror property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes error events.

For historical reasons, different arguments are passed to window.onerror and element.onerror handlers (as well as on error-typewindow.addEventListenerhandlers).

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onerror

Property.

The onerror property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes error events.

`For historical reasons, different arguments are passed to window.onerror and element.onerror handlers (as well as on error-type `window.addEventListener` handlers).`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onerror`
sourceraw docstring

onfocuscljs

(onfocus this)

Property.

The onfocus property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes focus events on the given element.

target.onfocus = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onfocus

Property.

The onfocus property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes focus events on the given element.

`target.onfocus = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onfocus`
sourceraw docstring

ongotpointercapturecljs

(ongotpointercapture this)

Property.

The ongotpointercapture property of the web.dom.GlobalEventHandlers is an EventHandler that processes gotpointercapture events.

target.ongotpointercapture = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ongotpointercapture

Property.

The ongotpointercapture property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes gotpointercapture events.

`target.ongotpointercapture = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ongotpointercapture`
sourceraw docstring

oninputcljs

(oninput this)

Property.

The oninput property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes input events on the <input>, and <textarea> elements. It also handles these events on elements contenteditable or designMode are turned on.

target.oninput = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oninput

Property.

The oninput property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes input events on the `<input>`,
and `<textarea>` elements. It also handles these events on elements
`contenteditable` or `designMode` are turned on.

`target.oninput = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oninput`
sourceraw docstring

oninvalidcljs

(oninvalid this)

Property.

The oninvalid property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes invalid events.

target.oninvalid = functionRef; var functionRef = target.oninvalid;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oninvalid

Property.

The oninvalid property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes invalid events.

`target.oninvalid = functionRef;
var functionRef = target.oninvalid;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oninvalid`
sourceraw docstring

onkeydowncljs

(onkeydown this)

Property.

The onkeydown property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes keydown events.

target.onkeydown = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeydown

Property.

The onkeydown property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes keydown events.

`target.onkeydown = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeydown`
sourceraw docstring

onkeypresscljs

(onkeypress this)

Property.

[Deprecated]

The onkeypress property of the web.dom.GlobalEventHandlers is an EventHandler that processes keypress events.

target.onkeypress = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeypress

Property.

[Deprecated]

The onkeypress property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes keypress events.

`target.onkeypress = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeypress`
sourceraw docstring

onkeyupcljs

(onkeyup this)

Property.

The onkeyup property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes keyup events.

target.onkeyup = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeyup

Property.

The onkeyup property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes keyup events.

`target.onkeyup = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeyup`
sourceraw docstring

onloadcljs

(onload this)

Property.

The onload property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes load events on a web.Window, <img> element, etc.

target.onload = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onload

Property.

The onload property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes load events on a `web.Window`,
`<img>` element, etc.

`target.onload = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onload`
sourceraw docstring

onloadeddatacljs

(onloadeddata this)

Property.

The onloadeddata property of the web.dom.GlobalEventHandlers is the EventHandler for processing loadeddata events.

`element.onloadeddata = handlerFunction; var handlerFunction = element.onloadeddata;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadeddata

Property.

The onloadeddata property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing loadeddata events.

`element.onloadeddata = handlerFunction;
var handlerFunction = element.onloadeddata;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadeddata`
sourceraw docstring

onloadedmetadatacljs

(onloadedmetadata this)

Property.

The onloadedmetadata property of the web.dom.GlobalEventHandlers is the EventHandler for processing loadedmetadata events.

`element.onloadedmetadata = handlerFunction; var handlerFunction = element.onloadedmetadata;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadedmetadata

Property.

The onloadedmetadata property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing loadedmetadata events.

`element.onloadedmetadata = handlerFunction;
var handlerFunction = element.onloadedmetadata;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadedmetadata`
sourceraw docstring

onloadendcljs

(onloadend this)

Property.

The onloadend property of the web.dom.GlobalEventHandlers mixin an EventHandler representing the code to be called when the event is raised (when progress has stopped on the loading of resource.)

img.onloadend = funcRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadend

Property.

The onloadend property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` representing the code to be called when the
event is raised (when progress has stopped on the loading of
resource.)

`img.onloadend = funcRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadend`
sourceraw docstring

onloadstartcljs

(onloadstart this)

Property.

The onloadstart property of the web.dom.GlobalEventHandlers is an EventHandler representing the code to be called when loadstart event is raised (when progress has begun on the loading a resource.)

img.onloadstart = funcRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadstart

Property.

The onloadstart property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` representing the code to be called when
loadstart event is raised (when progress has begun on the loading
a resource.)

`img.onloadstart = funcRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadstart`
sourceraw docstring

onlostpointercapturecljs

(onlostpointercapture this)

Property.

The onlostpointercapture property of the web.dom.GlobalEventHandlers is an EventHandler that processes lostpointercapture events.

target.onlostpointercapture = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onlostpointercapture

Property.

The onlostpointercapture property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes lostpointercapture events.

`target.onlostpointercapture = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onlostpointercapture`
sourceraw docstring

onmousedowncljs

(onmousedown this)

Property.

The onmousedown property of the web.dom.GlobalEventHandlers is an EventHandler that processes mousedown events.

target.onmousedown = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmousedown

Property.

The onmousedown property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes mousedown events.

`target.onmousedown = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmousedown`
sourceraw docstring

onmouseentercljs

(onmouseenter this)

Property.

The onmouseenter property of the web.dom.GlobalEventHandlers is the EventHandler for processing mouseenter events.

`element.onmouseenter = handlerFunction; var handlerFunction = element.onmouseenter;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseenter

Property.

The onmouseenter property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing mouseenter events.

`element.onmouseenter = handlerFunction;
var handlerFunction = element.onmouseenter;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseenter`
sourceraw docstring

onmouseleavecljs

(onmouseleave this)

Property.

The onmouseleave property of the web.dom.GlobalEventHandlers is the EventHandler for processing mouseleave events.

`element.onmouseleave = handlerFunction; var handlerFunction = element.onmouseleave;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseleave

Property.

The onmouseleave property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing mouseleave events.

`element.onmouseleave = handlerFunction;
var handlerFunction = element.onmouseleave;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseleave`
sourceraw docstring

onmousemovecljs

(onmousemove this)

Property.

The onmousemove property of the web.dom.GlobalEventHandlers is an EventHandler that processes mousemove events.

target.onmousemove = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmousemove

Property.

The onmousemove property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes mousemove events.

`target.onmousemove = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmousemove`
sourceraw docstring

onmouseoutcljs

(onmouseout this)

Property.

The onmouseout property of the web.dom.GlobalEventHandlers is an EventHandler that processes mouseout events.

element.onmouseout = function;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseout

Property.

The onmouseout property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes mouseout events.

`element.onmouseout = function;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseout`
sourceraw docstring

onmouseovercljs

(onmouseover this)

Property.

The onmouseover property of the web.dom.GlobalEventHandlers is an EventHandler that processes mouseover events.

element.onmouseover = function;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseover

Property.

The onmouseover property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes mouseover events.

`element.onmouseover = function;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseover`
sourceraw docstring

onmouseupcljs

(onmouseup this)

Property.

The onmouseup property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes mouseup events.

target.onmouseup = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseup

Property.

The onmouseup property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes mouseup events.

`target.onmouseup = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseup`
sourceraw docstring

onpausecljs

(onpause this)

Property.

The onpause property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing pause events.

`element.onpause = handlerFunction; var handlerFunction = element.onpause;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpause

Property.

The onpause property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing pause events.

`element.onpause = handlerFunction;
var handlerFunction = element.onpause;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpause`
sourceraw docstring

onplaycljs

(onplay this)

Property.

The onplay property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing play events.

`element.onplay = handlerFunction; var handlerFunction = element.onplay;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onplay

Property.

The onplay property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing play events.

`element.onplay = handlerFunction;
var handlerFunction = element.onplay;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onplay`
sourceraw docstring

onpointercancelcljs

(onpointercancel this)

Property.

The onpointercancel property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointercancel events.

`targetElement.onpointercancel = cancelHandler;

var cancelHandler = targetElement.onpointercancel;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointercancel

Property.

The onpointercancel property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointercancel events.

`targetElement.onpointercancel = cancelHandler;

var cancelHandler = targetElement.onpointercancel;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointercancel`
sourceraw docstring

onpointerdowncljs

(onpointerdown this)

Property.

The web.dom.GlobalEventHandlers event handler onpointerdown used to specify the event handler for the pointerdown event, is fired when the pointing device is initially pressed. This can be sent to web.Window, web.Document, and web.Element

`target.onpointerdown = downHandler;

var downHandler = target.onpointerdown;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerdown

Property.

The `web.dom.GlobalEventHandlers` event handler onpointerdown
used to specify the event handler for the pointerdown event,
is fired when the pointing device is initially pressed. This
can be sent to `web.Window`, `web.Document`, and `web.Element`

`target.onpointerdown = downHandler;

var downHandler = target.onpointerdown;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerdown`
sourceraw docstring

onpointerentercljs

(onpointerenter this)

Property.

The onpointerenter property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointerenter events.

`targetElement.onpointerenter = enterHandler;

var enterHandler = targetElement.onpointerenter;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerenter

Property.

The onpointerenter property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointerenter events.

`targetElement.onpointerenter = enterHandler;

var enterHandler = targetElement.onpointerenter;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerenter`
sourceraw docstring

onpointerleavecljs

(onpointerleave this)

Property.

The global event handler for the pointerleave event, which is to a web.Node when the pointer (mouse cursor, fingertip, etc.) its hit test area (for example, if the cursor exits an web.Element web.Window's content area). This event is part of the Pointer API.

`EventTarget.onpointerleave = leaveHandler;

var leaveHandler = EventTarget.onpointerleave;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerleave

Property.

The global event handler for the pointerleave event, which is
to a `web.Node` when the pointer (mouse cursor, fingertip, etc.)
its hit test area (for example, if the cursor exits an `web.Element`
`web.Window`'s content area). This event is part of the Pointer
API.

`EventTarget.onpointerleave = leaveHandler;

var leaveHandler = EventTarget.onpointerleave;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerleave`
sourceraw docstring

onpointermovecljs

(onpointermove this)

Property.

The onpointermove property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointermove events.

`targetElement.onpointermove = moveHandler;

var moveHandler = targetElement.onpointermove;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointermove

Property.

The onpointermove property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointermove events.

`targetElement.onpointermove = moveHandler;

var moveHandler = targetElement.onpointermove;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointermove`
sourceraw docstring

onpointeroutcljs

(onpointerout this)

Property.

The onpointerout property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointerout events.

`targetElement.onpointerout = outHandler;

var outHandler = targetElement.onpointerout;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerout

Property.

The onpointerout property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointerout events.

`targetElement.onpointerout = outHandler;

var outHandler = targetElement.onpointerout;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerout`
sourceraw docstring

onpointerovercljs

(onpointerover this)

Property.

The onpointerover property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointerover events.

`targetElement.onpointerover = overHandler;

var overHandler = targetElement.onpointerover;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerover

Property.

The onpointerover property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointerover events.

`targetElement.onpointerover = overHandler;

var overHandler = targetElement.onpointerover;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerover`
sourceraw docstring

onpointerupcljs

(onpointerup this)

Property.

The onpointerup property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointerup events.

`targetElement.onpointerup = upHandler;

var upHandler = targetElement.onpointerup;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerup

Property.

The onpointerup property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointerup events.

`targetElement.onpointerup = upHandler;

var upHandler = targetElement.onpointerup;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerup`
sourceraw docstring

onresetcljs

(onreset this)

Property.

The onreset property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes reset events.

target.onreset = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onreset

Property.

The onreset property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes reset events.

`target.onreset = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onreset`
sourceraw docstring

onresizecljs

(onresize this)

Property.

The onresize property of the web.dom.GlobalEventHandlers interface an EventHandler that processes resize events.

window.onresize = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onresize

Property.

The onresize property of the `web.dom.GlobalEventHandlers` interface
an `EventHandler` that processes resize events.

`window.onresize = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onresize`
sourceraw docstring

onscrollcljs

(onscroll this)

Property.

The onscroll property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes scroll events.

target.onscroll = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onscroll

Property.

The onscroll property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes scroll events.

`target.onscroll = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onscroll`
sourceraw docstring

onselectcljs

(onselect this)

Property.

The onselect property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes select.

target.onselect = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselect

Property.

The onselect property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes `select`.

`target.onselect = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselect`
sourceraw docstring

onselectionchangecljs

(onselectionchange this)

Property.

[Experimental]

The onselectionchange property of the web.dom.GlobalEventHandlers is an EventHandler that processes selectionchange events.

object.onselectionchange = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselectionchange

Property.

[Experimental]

The onselectionchange property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes selectionchange events.

`object.onselectionchange = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselectionchange`
sourceraw docstring

onselectstartcljs

(onselectstart this)

Property.

[Experimental]

The onselectstart property of the web.dom.GlobalEventHandlers is an EventHandler that processes selectstart events.

object.onselectstart = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselectstart

Property.

[Experimental]

The onselectstart property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes selectstart events.

`object.onselectstart = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselectstart`
sourceraw docstring

onsubmitcljs

(onsubmit this)

Property.

The onsubmit property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes submit events.

target.onsubmit = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onsubmit

Property.

The onsubmit property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes submit events.

`target.onsubmit = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onsubmit`
sourceraw docstring

ontouchcancelcljs

(ontouchcancel this)

Property.

[Experimental]

The ontouchcancel property of the web.dom.GlobalEventHandlers is an EventHandler that processes touchcancel events.

var cancelHandler = someElement.ontouchcancel;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchcancel

Property.

[Experimental]

The ontouchcancel property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes touchcancel events.

`var cancelHandler = someElement.ontouchcancel;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchcancel`
sourceraw docstring

ontouchstartcljs

(ontouchstart this)

Property.

[Experimental]

The ontouchstart property of the web.dom.GlobalEventHandlers is an EventHandler that processes touchstart events.

var startHandler = someElement.ontouchstart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchstart

Property.

[Experimental]

The ontouchstart property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes touchstart events.

`var startHandler = someElement.ontouchstart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchstart`
sourceraw docstring

ontransitioncancelcljs

(ontransitioncancel this)

Property.

The ontransitioncancel property of the web.dom.GlobalEventHandlers is an EventHandler that processes transitioncancel events.

`var transitionCancelHandler = target.ontransitioncancel;

target.ontransitioncancel = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontransitioncancel

Property.

The ontransitioncancel property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes transitioncancel events.

`var transitionCancelHandler = target.ontransitioncancel;

target.ontransitioncancel = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontransitioncancel`
sourceraw docstring

ontransitionendcljs

(ontransitionend this)

Property.

The ontransitionend property of the web.dom.GlobalEventHandlers is an EventHandler that processes transitionend events.

`var transitionEndHandler = target.ontransitionend;

target.ontransitionend = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontransitionend

Property.

The ontransitionend property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes transitionend events.

`var transitionEndHandler = target.ontransitionend;

target.ontransitionend = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontransitionend`
sourceraw docstring

onwheelcljs

(onwheel this)

Property.

The onwheel property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes wheel events.

target.onwheel = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onwheel

Property.

The onwheel property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes wheel events.

`target.onwheel = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onwheel`
sourceraw docstring

set-onabort!cljs

(set-onabort! this val)

Property.

[Draft] [Experimental]

The onabort property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing abort events sent to the window.

window.onabort = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onabort

Property.

[Draft]
[Experimental]

The onabort property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing abort events sent to the window.

`window.onabort = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onabort`
sourceraw docstring

set-onanimationcancel!cljs

(set-onanimationcancel! this val)

Property.

The onanimationcancel property of the web.dom.GlobalEventHandlers is the EventHandler for processing animationcancel events.

`var animCancelHandler = target.onanimationcancel;

target.onanimationcancel = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationcancel

Property.

The onanimationcancel property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing animationcancel events.

`var animCancelHandler = target.onanimationcancel;

target.onanimationcancel = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationcancel`
sourceraw docstring

set-onanimationend!cljs

(set-onanimationend! this val)

Property.

The onanimationend property of the web.dom.GlobalEventHandlers is the EventHandler for processing animationend events.

`var animEndHandler = target.onanimationend;

target.onanimationend = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationend

Property.

The onanimationend property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing animationend events.

`var animEndHandler = target.onanimationend;

target.onanimationend = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationend`
sourceraw docstring

set-onanimationiteration!cljs

(set-onanimationiteration! this val)

Property.

[Draft]

The onanimationiteration property of the web.dom.GlobalEventHandlers is the EventHandler for processing animationiteration events.

`var animIterationHandler = target.onanimationiteration;

target.onanimationiteration = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationiteration

Property.

[Draft]

The onanimationiteration property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing animationiteration events.

`var animIterationHandler = target.onanimationiteration;

target.onanimationiteration = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onanimationiteration`
sourceraw docstring

set-onauxclick!cljs

(set-onauxclick! this val)

Property.

[Experimental]

The onauxclick property of the web.dom.GlobalEventHandlers is an EventHandler for processing auxclick events.

target.onauxclick = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onauxclick

Property.

[Experimental]

The onauxclick property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` for processing auxclick events.

`target.onauxclick = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onauxclick`
sourceraw docstring

set-onblur!cljs

(set-onblur! this val)

Property.

The onblur property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing blur events. It's available web.Element, web.Document, and web.Window.

target.onblur = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onblur

Property.

The onblur property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing blur events. It's available
`web.Element`, `web.Document`, and `web.Window`.

`target.onblur = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onblur`
sourceraw docstring

set-oncancel!cljs

(set-oncancel! this val)

Property.

The oncancel property of the web.dom.GlobalEventHandlers mixin an EventHandler for processing cancel events sent to a <dialog>

target.oncancel = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncancel

Property.

The oncancel property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` for processing cancel events sent to a `<dialog>`

`target.oncancel = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncancel`
sourceraw docstring

set-oncanplay!cljs

(set-oncanplay! this val)

Property.

The oncanplay property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing canplay events.

`element.oncanplay = handlerFunction; var handlerFunction = element.oncanplay;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncanplay

Property.

The oncanplay property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing canplay events.

`element.oncanplay = handlerFunction;
var handlerFunction = element.oncanplay;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncanplay`
sourceraw docstring

set-oncanplaythrough!cljs

(set-oncanplaythrough! this val)

Property.

The oncanplaythrough property of the web.dom.GlobalEventHandlers is the EventHandler for processing canplaythrough events.

`element.oncanplaythrough = handlerFunction; var handlerFunction = element.oncanplaythrough;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncanplaythrough

Property.

The oncanplaythrough property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing canplaythrough events.

`element.oncanplaythrough = handlerFunction;
var handlerFunction = element.oncanplaythrough;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncanplaythrough`
sourceraw docstring

set-onchange!cljs

(set-onchange! this val)

Property.

The onchange property of the web.dom.GlobalEventHandlers mixin an EventHandler for processing change events.

`target.onchange = functionRef;

functionRef is a function name or a function expression. The function receives an web.Event object as its sole argument.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onchange

Property.

The onchange property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` for processing change events.

`target.onchange = functionRef;

functionRef is a function name or a function expression. The function receives an `web.Event` object as its sole argument.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onchange`
sourceraw docstring

set-onclick!cljs

(set-onclick! this val)

Property.

The onclick property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing click events on a given element.

target.onclick = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onclick

Property.

The onclick property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing click events on a given element.

`target.onclick = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onclick`
sourceraw docstring

set-onclose!cljs

(set-onclose! this val)

Property.

[Experimental]

The onclose property of the web.dom.GlobalEventHandlers mixin an EventHandler for processing close events sent to a <dialog>

target.onclose = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onclose

Property.

[Experimental]

The onclose property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` for processing close events sent to a `<dialog>`

`target.onclose = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onclose`
sourceraw docstring

set-oncontextmenu!cljs

(set-oncontextmenu! this val)

Property.

The oncontextmenu property of the web.dom.GlobalEventHandlers is an EventHandler that processes contextmenu events.

target.oncontextmenu = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncontextmenu

Property.

The oncontextmenu property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes contextmenu events.

`target.oncontextmenu = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncontextmenu`
sourceraw docstring

set-oncuechange!cljs

(set-oncuechange! this val)

Property.

The oncuechange property of the web.dom.GlobalEventHandlers is the EventHandler for processing cuechange events.

`element.oncuechange = handlerFunction; var handlerFunction = element.oncuechange;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncuechange

Property.

The oncuechange property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing cuechange events.

`element.oncuechange = handlerFunction;
var handlerFunction = element.oncuechange;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oncuechange`
sourceraw docstring

set-ondblclick!cljs

(set-ondblclick! this val)

Property.

The ondblclick property of the web.dom.GlobalEventHandlers is an EventHandler that processes dblclick events on the given

target.ondblclick = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ondblclick

Property.

The ondblclick property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes dblclick events on the given

`target.ondblclick = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ondblclick`
sourceraw docstring

set-ondurationchange!cljs

(set-ondurationchange! this val)

Property.

The ondurationchange property of the web.dom.GlobalEventHandlers is the EventHandler for processing durationchange events.

`element.ondurationchange = handlerFunction; var handlerFunction = element.ondurationchange;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ondurationchange

Property.

The ondurationchange property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing durationchange events.

`element.ondurationchange = handlerFunction;
var handlerFunction = element.ondurationchange;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ondurationchange`
sourceraw docstring

set-onended!cljs

(set-onended! this val)

Property.

The onended property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing ended events.

`element.onended = handlerFunction; var handlerFunction = element.onended;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onended

Property.

The onended property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing ended events.

`element.onended = handlerFunction;
var handlerFunction = element.onended;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onended`
sourceraw docstring

set-onerror!cljs

(set-onerror! this val)

Property.

The onerror property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes error events.

For historical reasons, different arguments are passed to window.onerror and element.onerror handlers (as well as on error-typewindow.addEventListenerhandlers).

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onerror

Property.

The onerror property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes error events.

`For historical reasons, different arguments are passed to window.onerror and element.onerror handlers (as well as on error-type `window.addEventListener` handlers).`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onerror`
sourceraw docstring

set-onfocus!cljs

(set-onfocus! this val)

Property.

The onfocus property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes focus events on the given element.

target.onfocus = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onfocus

Property.

The onfocus property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes focus events on the given element.

`target.onfocus = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onfocus`
sourceraw docstring

set-ongotpointercapture!cljs

(set-ongotpointercapture! this val)

Property.

The ongotpointercapture property of the web.dom.GlobalEventHandlers is an EventHandler that processes gotpointercapture events.

target.ongotpointercapture = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ongotpointercapture

Property.

The ongotpointercapture property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes gotpointercapture events.

`target.ongotpointercapture = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ongotpointercapture`
sourceraw docstring

set-oninput!cljs

(set-oninput! this val)

Property.

The oninput property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes input events on the <input>, and <textarea> elements. It also handles these events on elements contenteditable or designMode are turned on.

target.oninput = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oninput

Property.

The oninput property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes input events on the `<input>`,
and `<textarea>` elements. It also handles these events on elements
`contenteditable` or `designMode` are turned on.

`target.oninput = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oninput`
sourceraw docstring

set-oninvalid!cljs

(set-oninvalid! this val)

Property.

The oninvalid property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes invalid events.

target.oninvalid = functionRef; var functionRef = target.oninvalid;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oninvalid

Property.

The oninvalid property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes invalid events.

`target.oninvalid = functionRef;
var functionRef = target.oninvalid;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/oninvalid`
sourceraw docstring

set-onkeydown!cljs

(set-onkeydown! this val)

Property.

The onkeydown property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes keydown events.

target.onkeydown = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeydown

Property.

The onkeydown property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes keydown events.

`target.onkeydown = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeydown`
sourceraw docstring

set-onkeypress!cljs

(set-onkeypress! this val)

Property.

[Deprecated]

The onkeypress property of the web.dom.GlobalEventHandlers is an EventHandler that processes keypress events.

target.onkeypress = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeypress

Property.

[Deprecated]

The onkeypress property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes keypress events.

`target.onkeypress = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeypress`
sourceraw docstring

set-onkeyup!cljs

(set-onkeyup! this val)

Property.

The onkeyup property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes keyup events.

target.onkeyup = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeyup

Property.

The onkeyup property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes keyup events.

`target.onkeyup = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onkeyup`
sourceraw docstring

set-onload!cljs

(set-onload! this val)

Property.

The onload property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes load events on a web.Window, <img> element, etc.

target.onload = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onload

Property.

The onload property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes load events on a `web.Window`,
`<img>` element, etc.

`target.onload = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onload`
sourceraw docstring

set-onloadeddata!cljs

(set-onloadeddata! this val)

Property.

The onloadeddata property of the web.dom.GlobalEventHandlers is the EventHandler for processing loadeddata events.

`element.onloadeddata = handlerFunction; var handlerFunction = element.onloadeddata;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadeddata

Property.

The onloadeddata property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing loadeddata events.

`element.onloadeddata = handlerFunction;
var handlerFunction = element.onloadeddata;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadeddata`
sourceraw docstring

set-onloadedmetadata!cljs

(set-onloadedmetadata! this val)

Property.

The onloadedmetadata property of the web.dom.GlobalEventHandlers is the EventHandler for processing loadedmetadata events.

`element.onloadedmetadata = handlerFunction; var handlerFunction = element.onloadedmetadata;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadedmetadata

Property.

The onloadedmetadata property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing loadedmetadata events.

`element.onloadedmetadata = handlerFunction;
var handlerFunction = element.onloadedmetadata;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadedmetadata`
sourceraw docstring

set-onloadend!cljs

(set-onloadend! this val)

Property.

The onloadend property of the web.dom.GlobalEventHandlers mixin an EventHandler representing the code to be called when the event is raised (when progress has stopped on the loading of resource.)

img.onloadend = funcRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadend

Property.

The onloadend property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` representing the code to be called when the
event is raised (when progress has stopped on the loading of
resource.)

`img.onloadend = funcRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadend`
sourceraw docstring

set-onloadstart!cljs

(set-onloadstart! this val)

Property.

The onloadstart property of the web.dom.GlobalEventHandlers is an EventHandler representing the code to be called when loadstart event is raised (when progress has begun on the loading a resource.)

img.onloadstart = funcRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadstart

Property.

The onloadstart property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` representing the code to be called when
loadstart event is raised (when progress has begun on the loading
a resource.)

`img.onloadstart = funcRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onloadstart`
sourceraw docstring

set-onlostpointercapture!cljs

(set-onlostpointercapture! this val)

Property.

The onlostpointercapture property of the web.dom.GlobalEventHandlers is an EventHandler that processes lostpointercapture events.

target.onlostpointercapture = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onlostpointercapture

Property.

The onlostpointercapture property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes lostpointercapture events.

`target.onlostpointercapture = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onlostpointercapture`
sourceraw docstring

set-onmousedown!cljs

(set-onmousedown! this val)

Property.

The onmousedown property of the web.dom.GlobalEventHandlers is an EventHandler that processes mousedown events.

target.onmousedown = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmousedown

Property.

The onmousedown property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes mousedown events.

`target.onmousedown = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmousedown`
sourceraw docstring

set-onmouseenter!cljs

(set-onmouseenter! this val)

Property.

The onmouseenter property of the web.dom.GlobalEventHandlers is the EventHandler for processing mouseenter events.

`element.onmouseenter = handlerFunction; var handlerFunction = element.onmouseenter;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseenter

Property.

The onmouseenter property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing mouseenter events.

`element.onmouseenter = handlerFunction;
var handlerFunction = element.onmouseenter;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseenter`
sourceraw docstring

set-onmouseleave!cljs

(set-onmouseleave! this val)

Property.

The onmouseleave property of the web.dom.GlobalEventHandlers is the EventHandler for processing mouseleave events.

`element.onmouseleave = handlerFunction; var handlerFunction = element.onmouseleave;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseleave

Property.

The onmouseleave property of the `web.dom.GlobalEventHandlers`
is the `EventHandler` for processing mouseleave events.

`element.onmouseleave = handlerFunction;
var handlerFunction = element.onmouseleave;

handlerFunction is either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseleave`
sourceraw docstring

set-onmousemove!cljs

(set-onmousemove! this val)

Property.

The onmousemove property of the web.dom.GlobalEventHandlers is an EventHandler that processes mousemove events.

target.onmousemove = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmousemove

Property.

The onmousemove property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes mousemove events.

`target.onmousemove = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmousemove`
sourceraw docstring

set-onmouseout!cljs

(set-onmouseout! this val)

Property.

The onmouseout property of the web.dom.GlobalEventHandlers is an EventHandler that processes mouseout events.

element.onmouseout = function;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseout

Property.

The onmouseout property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes mouseout events.

`element.onmouseout = function;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseout`
sourceraw docstring

set-onmouseover!cljs

(set-onmouseover! this val)

Property.

The onmouseover property of the web.dom.GlobalEventHandlers is an EventHandler that processes mouseover events.

element.onmouseover = function;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseover

Property.

The onmouseover property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes mouseover events.

`element.onmouseover = function;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseover`
sourceraw docstring

set-onmouseup!cljs

(set-onmouseup! this val)

Property.

The onmouseup property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes mouseup events.

target.onmouseup = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseup

Property.

The onmouseup property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes mouseup events.

`target.onmouseup = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onmouseup`
sourceraw docstring

set-onpause!cljs

(set-onpause! this val)

Property.

The onpause property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing pause events.

`element.onpause = handlerFunction; var handlerFunction = element.onpause;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpause

Property.

The onpause property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing pause events.

`element.onpause = handlerFunction;
var handlerFunction = element.onpause;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpause`
sourceraw docstring

set-onplay!cljs

(set-onplay! this val)

Property.

The onplay property of the web.dom.GlobalEventHandlers mixin the EventHandler for processing play events.

`element.onplay = handlerFunction; var handlerFunction = element.onplay;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onplay

Property.

The onplay property of the `web.dom.GlobalEventHandlers` mixin
the `EventHandler` for processing play events.

`element.onplay = handlerFunction;
var handlerFunction = element.onplay;

handlerFunction should be either null or a JavaScript function specifying the handler for the event.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onplay`
sourceraw docstring

set-onpointercancel!cljs

(set-onpointercancel! this val)

Property.

The onpointercancel property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointercancel events.

`targetElement.onpointercancel = cancelHandler;

var cancelHandler = targetElement.onpointercancel;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointercancel

Property.

The onpointercancel property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointercancel events.

`targetElement.onpointercancel = cancelHandler;

var cancelHandler = targetElement.onpointercancel;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointercancel`
sourceraw docstring

set-onpointerdown!cljs

(set-onpointerdown! this val)

Property.

The web.dom.GlobalEventHandlers event handler onpointerdown used to specify the event handler for the pointerdown event, is fired when the pointing device is initially pressed. This can be sent to web.Window, web.Document, and web.Element

`target.onpointerdown = downHandler;

var downHandler = target.onpointerdown;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerdown

Property.

The `web.dom.GlobalEventHandlers` event handler onpointerdown
used to specify the event handler for the pointerdown event,
is fired when the pointing device is initially pressed. This
can be sent to `web.Window`, `web.Document`, and `web.Element`

`target.onpointerdown = downHandler;

var downHandler = target.onpointerdown;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerdown`
sourceraw docstring

set-onpointerenter!cljs

(set-onpointerenter! this val)

Property.

The onpointerenter property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointerenter events.

`targetElement.onpointerenter = enterHandler;

var enterHandler = targetElement.onpointerenter;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerenter

Property.

The onpointerenter property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointerenter events.

`targetElement.onpointerenter = enterHandler;

var enterHandler = targetElement.onpointerenter;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerenter`
sourceraw docstring

set-onpointerleave!cljs

(set-onpointerleave! this val)

Property.

The global event handler for the pointerleave event, which is to a web.Node when the pointer (mouse cursor, fingertip, etc.) its hit test area (for example, if the cursor exits an web.Element web.Window's content area). This event is part of the Pointer API.

`EventTarget.onpointerleave = leaveHandler;

var leaveHandler = EventTarget.onpointerleave;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerleave

Property.

The global event handler for the pointerleave event, which is
to a `web.Node` when the pointer (mouse cursor, fingertip, etc.)
its hit test area (for example, if the cursor exits an `web.Element`
`web.Window`'s content area). This event is part of the Pointer
API.

`EventTarget.onpointerleave = leaveHandler;

var leaveHandler = EventTarget.onpointerleave;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerleave`
sourceraw docstring

set-onpointermove!cljs

(set-onpointermove! this val)

Property.

The onpointermove property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointermove events.

`targetElement.onpointermove = moveHandler;

var moveHandler = targetElement.onpointermove;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointermove

Property.

The onpointermove property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointermove events.

`targetElement.onpointermove = moveHandler;

var moveHandler = targetElement.onpointermove;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointermove`
sourceraw docstring

set-onpointerout!cljs

(set-onpointerout! this val)

Property.

The onpointerout property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointerout events.

`targetElement.onpointerout = outHandler;

var outHandler = targetElement.onpointerout;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerout

Property.

The onpointerout property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointerout events.

`targetElement.onpointerout = outHandler;

var outHandler = targetElement.onpointerout;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerout`
sourceraw docstring

set-onpointerover!cljs

(set-onpointerover! this val)

Property.

The onpointerover property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointerover events.

`targetElement.onpointerover = overHandler;

var overHandler = targetElement.onpointerover;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerover

Property.

The onpointerover property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointerover events.

`targetElement.onpointerover = overHandler;

var overHandler = targetElement.onpointerover;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerover`
sourceraw docstring

set-onpointerup!cljs

(set-onpointerup! this val)

Property.

The onpointerup property of the web.dom.GlobalEventHandlers is an EventHandler that processes pointerup events.

`targetElement.onpointerup = upHandler;

var upHandler = targetElement.onpointerup;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerup

Property.

The onpointerup property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes pointerup events.

`targetElement.onpointerup = upHandler;

var upHandler = targetElement.onpointerup;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onpointerup`
sourceraw docstring

set-onreset!cljs

(set-onreset! this val)

Property.

The onreset property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes reset events.

target.onreset = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onreset

Property.

The onreset property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes reset events.

`target.onreset = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onreset`
sourceraw docstring

set-onresize!cljs

(set-onresize! this val)

Property.

The onresize property of the web.dom.GlobalEventHandlers interface an EventHandler that processes resize events.

window.onresize = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onresize

Property.

The onresize property of the `web.dom.GlobalEventHandlers` interface
an `EventHandler` that processes resize events.

`window.onresize = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onresize`
sourceraw docstring

set-onscroll!cljs

(set-onscroll! this val)

Property.

The onscroll property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes scroll events.

target.onscroll = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onscroll

Property.

The onscroll property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes scroll events.

`target.onscroll = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onscroll`
sourceraw docstring

set-onselect!cljs

(set-onselect! this val)

Property.

The onselect property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes select.

target.onselect = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselect

Property.

The onselect property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes `select`.

`target.onselect = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselect`
sourceraw docstring

set-onselectionchange!cljs

(set-onselectionchange! this val)

Property.

[Experimental]

The onselectionchange property of the web.dom.GlobalEventHandlers is an EventHandler that processes selectionchange events.

object.onselectionchange = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselectionchange

Property.

[Experimental]

The onselectionchange property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes selectionchange events.

`object.onselectionchange = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselectionchange`
sourceraw docstring

set-onselectstart!cljs

(set-onselectstart! this val)

Property.

[Experimental]

The onselectstart property of the web.dom.GlobalEventHandlers is an EventHandler that processes selectstart events.

object.onselectstart = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselectstart

Property.

[Experimental]

The onselectstart property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes selectstart events.

`object.onselectstart = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onselectstart`
sourceraw docstring

set-onsubmit!cljs

(set-onsubmit! this val)

Property.

The onsubmit property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes submit events.

target.onsubmit = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onsubmit

Property.

The onsubmit property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes submit events.

`target.onsubmit = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onsubmit`
sourceraw docstring

set-ontouchcancel!cljs

(set-ontouchcancel! this val)

Property.

[Experimental]

The ontouchcancel property of the web.dom.GlobalEventHandlers is an EventHandler that processes touchcancel events.

var cancelHandler = someElement.ontouchcancel;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchcancel

Property.

[Experimental]

The ontouchcancel property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes touchcancel events.

`var cancelHandler = someElement.ontouchcancel;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchcancel`
sourceraw docstring

set-ontouchstart!cljs

(set-ontouchstart! this val)

Property.

[Experimental]

The ontouchstart property of the web.dom.GlobalEventHandlers is an EventHandler that processes touchstart events.

var startHandler = someElement.ontouchstart;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchstart

Property.

[Experimental]

The ontouchstart property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes touchstart events.

`var startHandler = someElement.ontouchstart;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchstart`
sourceraw docstring

set-ontransitioncancel!cljs

(set-ontransitioncancel! this val)

Property.

The ontransitioncancel property of the web.dom.GlobalEventHandlers is an EventHandler that processes transitioncancel events.

`var transitionCancelHandler = target.ontransitioncancel;

target.ontransitioncancel = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontransitioncancel

Property.

The ontransitioncancel property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes transitioncancel events.

`var transitionCancelHandler = target.ontransitioncancel;

target.ontransitioncancel = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontransitioncancel`
sourceraw docstring

set-ontransitionend!cljs

(set-ontransitionend! this val)

Property.

The ontransitionend property of the web.dom.GlobalEventHandlers is an EventHandler that processes transitionend events.

`var transitionEndHandler = target.ontransitionend;

target.ontransitionend = Function`

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontransitionend

Property.

The ontransitionend property of the `web.dom.GlobalEventHandlers`
is an `EventHandler` that processes transitionend events.

`var transitionEndHandler = target.ontransitionend;

target.ontransitionend = Function`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontransitionend`
sourceraw docstring

set-onwheel!cljs

(set-onwheel! this val)

Property.

The onwheel property of the web.dom.GlobalEventHandlers mixin an EventHandler that processes wheel events.

target.onwheel = functionRef;

See also: https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onwheel

Property.

The onwheel property of the `web.dom.GlobalEventHandlers` mixin
an `EventHandler` that processes wheel events.

`target.onwheel = functionRef;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onwheel`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close