XRSession.onselectstart

Draft
This page is not complete.

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

The onselectstart attribute of the XRSession object is the event handler for the selectstart event, which is dispatched when user starts making some sort of selection by pressing a trigger, touchpad, or button, speaking a command, or making a hand gesture. For example, this might include pressing a button or moving a joystick.

Note: Not to be confused with XRSession.onselect and XRSession.onselectend.

Syntax

XRSession.onselectstart = function(event) { ... }

Example

XRSession.onselectstart = function(event) {
  console.log("The user has started a primary action, but might not have completed it.")
}

Specifications

Specification Status Comment
WebXR Device API
The definition of 'XRSession.onselectstart' in that specification.
Working Draft Initial definition.

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
onselectstartChrome Full support 79Edge Full support 79Firefox No support NoIE No support NoOpera No support NoSafari No support NoWebView Android No support NoChrome Android Full support 79Firefox Android No support NoOpera Android No support NoSafari iOS No support NoSamsung Internet Android Full support 11.2

Legend

Full support
Full support
No support
No support

See also