XRSession.onselectend

The onselectend attribute of the XRSession object is the event handler for the selectend event, which is dispatched when user finishes making some sort of selection by releasing a trigger, touchpad, or button, finishes speaking a command, or makes a hand gesture. For example, this might include releasing a button or joystick.

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

Syntax

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

Example

XRSession.onselectend = function(event) {
  console.log("The user has completed a primary action.")
}

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
onselectend
79
79
No
No
No
No
No
79
No
No
No
11.2

See also

© 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/XRSession/onselectend