dom / latest / window / gamepaddisconnected_event.html /

Window: gamepaddisconnected event

The gamepaddisconnected event is fired when the browser detects that a gamepad has been disconnected.

The event will not fire if disallowed by the document's gamepad Feature Policy.

This event is not cancelable and does not bubble.

Examples

To be informed when a gamepad is disconnected, you can add a handler to the window using addEventListener(), like this:

window.addEventListener('gamepaddisconnected', event => {
    console.log('Lost connection with the gamepad.');
});

Alternatively, you can use the window.ongamepaddisconnected event handler property to establish a handler for the gamepaddisconnected event:

window.ongamepaddisconnected = event => {
    console.log('Lost connection with the gamepad.');
});

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
gamepaddisconnected_event
35
The event handler property ( ongamepaddisconnected) is not supported; see bug 1192878.
≤18
The event handler property ( ongamepaddisconnected) is not supported; see bug 1192878.
29
No
22
The event handler property ( ongamepaddisconnected) is not supported; see bug 1192878.
10.1
37
The event handler property ( ongamepaddisconnected) is not supported; see bug 1192878.
37
The event handler property ( ongamepaddisconnected) is not supported; see bug 1192878.
32
24
The event handler property ( ongamepaddisconnected) is not supported; see bug 1192878.
No
3.0
The event handler property ( ongamepaddisconnected) is not supported; see bug 1192878.

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/Window/gamepaddisconnected_event