XRSession: end event

An end event is fired at an XRSession object when the WebXR session has ended, either because the web application has chosen to stop the session, or because the user agent terminated the session.

Bubbles No
Cancelable No
Interface XRSessionEvent
Event handler XRSession.onend

Example

To be informed when a WebXR session comes to an end, you can add a handler to your XRSession instance using addEventListener(), like this:

XRSession.addEventListener("end", function(event) {
  /* the session has shut down */
});

Alternatively, you can use the XRSession.onend event handler property to establish a handler for the end event:

XRSession.onend = function(event) {
 /* the session has shut down */
}

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

© 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/end_event