Liking cljdoc? Tell your friends :D

web.event.UIEvent

The UIEvent interface represents simple user interface events.

The UIEvent interface represents simple user interface events.
raw docstring

cancel-bubblecljs

(cancel-bubble this)

Property.

The UIEvent.cancelBubble property indicates if event bubbling this event has been canceled or not. It is set to false by default, the event to bubble up the DOM, if it is a bubbleable event. this property to true stops the event from bubbling up the DOM. all events are allowed to bubble up the DOM.

event.cancelBubble = bool; var bool = event.cancelBubble;

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/cancelBubble

Property.

The UIEvent.cancelBubble property indicates if event bubbling
this event has been canceled or not. It is set to false by default,
the event to bubble up the DOM, if it is a bubbleable event.
this property to true stops the event from bubbling up the DOM.
all events are allowed to bubble up the DOM.

`event.cancelBubble = bool;
var bool = event.cancelBubble;`

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

constructorcljs

Constructor.

The UIEvent() constructor creates a new web.event.UIEvent.

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

Constructor.

The UIEvent() constructor creates a new `web.event.UIEvent`.

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

detailcljs

(detail this)

Property.

The UIEvent.detail read-only property, when non-zero, provides current (or next, depending on the event) click count.

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/detail

Property.

The UIEvent.detail read-only property, when non-zero, provides
current (or next, depending on the event) click count.

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

init-ui-eventcljs

(init-ui-event this type can-bubble cancelable view detail)

Method.

The UIEvent.initUIEvent() method initializes a UI event once been created.

event.initUIEvent(type, canBubble, cancelable, view, detail)

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/initUIEvent

Method.

The UIEvent.initUIEvent() method initializes a UI event once
been created.

`event.initUIEvent(type, canBubble, cancelable, view, detail)`

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

is-charcljs

(is-char this)

Property.

The UIEvent.isChar read-only property returns a js.Boolean whether the event produced a key character or not.

var isChar = UIEvent.isChar;

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/isChar

Property.

The UIEvent.isChar read-only property returns a `js.Boolean`
whether the event produced a key character or not.

`var isChar = UIEvent.isChar;`

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

layer-xcljs

(layer-x this)

Property.

The UIEvent.layerX read-only property returns the horizontal of the event relative to the current layer.

`var xpos = event.layerX

xpos is an integer value in pixels for the x-coordinate of the mouse pointer, when the mouse event fired.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/layerX

Property.

The UIEvent.layerX read-only property returns the horizontal
of the event relative to the current layer.

`var xpos = event.layerX


xpos is an integer value in pixels for the x-coordinate of the mouse pointer, when the mouse event fired.`

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

layer-ycljs

(layer-y this)

Property.

The UIEvent.layerY read-only property returns the vertical coordinate the event relative to the current layer.

`var ypos = event.layerY;

ypos is an integer value in pixels for the y-coordinate of the mouse pointer, when the mouse event fired.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/layerY

Property.

The UIEvent.layerY read-only property returns the vertical coordinate
the event relative to the current layer.

`var ypos = event.layerY;


ypos is an integer value in pixels for the y-coordinate of the mouse pointer, when the mouse event fired.`

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

page-xcljs

(page-x this)

Property.

The non-standard, read-only web.event.UIEvent property pageX the horizontal coordinate of the event relative to the whole

var pos = event.pageX

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/pageX

Property.

The non-standard, read-only `web.event.UIEvent` property pageX
the horizontal coordinate of the event relative to the whole

`var pos = event.pageX`

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

page-ycljs

(page-y this)

Property.

The UIEvent.pageY read-only property returns the vertical coordinate the event relative to the whole document.

`var pageY = event.pageY;

pageY is an integer value in pixels for the y-coordinate of the mouse pointer, relative to the whole document, when the mouse event fired. This property takes into account any vertical scrolling of the page.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/pageY

Property.

The UIEvent.pageY read-only property returns the vertical coordinate
the event relative to the whole document.

`var pageY = event.pageY;

pageY is an integer value in pixels for the y-coordinate of the mouse pointer, relative to the whole document, when the mouse event fired. This property takes into account any vertical scrolling of the page.`

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

set-cancel-bubble!cljs

(set-cancel-bubble! this val)

Property.

The UIEvent.cancelBubble property indicates if event bubbling this event has been canceled or not. It is set to false by default, the event to bubble up the DOM, if it is a bubbleable event. this property to true stops the event from bubbling up the DOM. all events are allowed to bubble up the DOM.

event.cancelBubble = bool; var bool = event.cancelBubble;

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/cancelBubble

Property.

The UIEvent.cancelBubble property indicates if event bubbling
this event has been canceled or not. It is set to false by default,
the event to bubble up the DOM, if it is a bubbleable event.
this property to true stops the event from bubbling up the DOM.
all events are allowed to bubble up the DOM.

`event.cancelBubble = bool;
var bool = event.cancelBubble;`

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

set-source-capabilities!cljs

(set-source-capabilities! this val)

Property.

The UIEvent.sourceCapabilities read-only property returns an of the web.other.InputDeviceCapabilities interface which provides about the physical device responsible for generating a touch If no input device was responsible for the event, it returns

var iDC = event.sourceCapabilities

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/sourceCapabilities

Property.

The UIEvent.sourceCapabilities read-only property returns an
of the `web.other.InputDeviceCapabilities` interface which provides
about the physical device responsible for generating a touch
If no input device was responsible for the event, it returns

`var iDC = event.sourceCapabilities`

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

source-capabilitiescljs

(source-capabilities this)

Property.

The UIEvent.sourceCapabilities read-only property returns an of the web.other.InputDeviceCapabilities interface which provides about the physical device responsible for generating a touch If no input device was responsible for the event, it returns

var iDC = event.sourceCapabilities

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/sourceCapabilities

Property.

The UIEvent.sourceCapabilities read-only property returns an
of the `web.other.InputDeviceCapabilities` interface which provides
about the physical device responsible for generating a touch
If no input device was responsible for the event, it returns

`var iDC = event.sourceCapabilities`

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

viewcljs

(view this)

Property.

The UIEvent.view read-only property returns the WindowProxy from which the event was generated. In browsers, this is the object the event happened in.

`var view = event.view;

view is a reference to an AbstractView object.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/view

Property.

The UIEvent.view read-only property returns the `WindowProxy`
from which the event was generated. In browsers, this is the
object the event happened in.

`var view = event.view;


view is a reference to an AbstractView object.`

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

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

× close