Web/API/XRInputSourcesChangeEvent/XRInputSourcesChangeEvent

From Get docs

Secure contextThis feature is available only in secure contexts (HTTPS), in some or all supporting browsers.


The XRInputSourcesChangeEvent() constructor creates and returns a new XRInputSourcesChangeEvent object, representing an update to the list of available WebXR input devices. You won't typically call this constructor yourself, as these events are created and sent to you by the WebXR system.

Syntax

newInputSourcesChangeEvent = new XRInputSourcesChangeEvent(type, eventInitDict);

Parameters

type
A DOMString indicating the type of event which has occurred. This string must always be inputsourceschange.
eventInitDict
An object conforming to the XRInputSourcesChangeEventInit dictionary, prodividing the initial values for the event.

Return value

A newly-created XRInputSourcesChangeEvent object configured based upon the input parameters provided.

Event types

inputsourceschange
Delivered to the XRSession when the set of input devices available to it changes.

Example

The following snippet of code creates a new XRInputSourcesChangeEvent object indicating that a single new input source, described by an XRInputSource object named newInputSource, has been added to the system.

let iscEvent = new XRInputSourcesChangeEvent("inputsourceschange", { session: xrSession,
                           added: [newInputSource], removed: [] });

Specifications

Specification Status Comment
WebXR Device APIThe definition of 'XRInputSourcesChangeEvent()' in that specification. Working Draft Initial definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
XRInputSourcesChangeEvent() constructor Chrome

Full support 79

Edge

Full support 79

Firefox

No support No

IE

No support No

Opera

No support No

Safari

No support No

WebView Android

No support No

Chrome Android

Full support 79

Firefox Android

No support No

Opera Android

No support No

Safari iOS

No support No

Samsung Internet Android

Full support 11.2

Legend

Full support  
Full support
No support  
No support