dom / latest / uievent / uievent.html /

UIEvent()

The UIEvent() constructor creates a new UIEvent.

Syntax

new UIEvent(typeArg);
new UIEvent(typeArg, UIEventInit);

Values

typeArg

Is a DOMString representing the name of the event.

UIEventInit Optional

Is a UIEventInit dictionary, having the following fields:

  • detail: optional and defaulting to 0, of type long, that is a event-dependant value associated with the event. UIEvent.detail lists the semantic for standard events.
  • view: optional and defaulting to null, of type WindowProxy, that is the Window associated with the event .
  • sourceCapabilities: Non-Standard An instance of the InputDeviceCapabilities interface which provides information about the physical device responsible for generating a touch event.

Note: The UIEventInit dictionary also accepts fields from the EventInit dictionary.

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
UIEvent
26
12
11
No
15
7
1
26
14
14
7
1.0

See also

  • UIEvent, the interface of the objects it constructs.

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/UIEvent