Web/API/Window/vrdisplaydisconnect event

From Get docs


The vrdisplaydisconnect event of the WebVR API is fired when a compatible VR display is disconnected from the computer.


Bubbles No
Cancelable No
Interface VRDisplayEvent
Event handler property onvrdisplaydisconnect

Examples

You can use the vrdisplaydisconnect event in an addEventListener method:

window.addEventListener('vrdisplaydisconnect', function() {
  info.textContent = 'Display disconnected.';
  reportDisplays();
});

Or use the onvrdisplaydisconnect event handler property:

window.onvrdisplaydisconnect = function() {
  info.textContent = 'Display disconnected.';
  reportDisplays();
);

Specifications

Specification Status Comment
WebVR 1.1The definition of 'vrdisplaydisconnect' in that specification. 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

vrdisplaydisconnect event

Experimental'

Chrome No support No

Disabled'

No support No

Disabled'

Disabled' This feature is behind the WebVR preference (needs to be set to Enabled). To change preferences in Chrome, visit chrome://flags.

Edge

No support 15 — 79

Firefox Full support 55

Notes'

Full support 55

Notes'

Notes' Windows support was enabled in Firefox 55. Full support 64

Notes'

Notes' macOS support was enabled in Firefox 64.

IE

No support No

Opera

No support No

Safari

No support No

WebView Android

No support No

Chrome Android Full support 56

Notes'

Full support 56

Notes'

Notes' Chrome for Android 56 supports only Google Daydream View. Notes' Chrome for Android 57 adds support for Google Cardboard.

Firefox Android

Full support 55

Opera Android

No support No

Safari iOS

No support No

Samsung Internet Android Full support 6.0

Notes'

Full support 6.0

Notes'

Notes' Supported on Samsung Internet for GearVR.

Legend

Full support  
Full support
No support  
No support
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.
See implementation notes.'
See implementation notes.
User must explicitly enable this feature.'
User must explicitly enable this feature.


See also