The state
read-only property of the RemotePlayback
interface returns the current state of the RemotePlayback
connection.
The state
read-only property of the RemotePlayback
interface returns the current state of the RemotePlayback
connection.
One of:
"connecting"
The user agent is attempting to initiate remote playback with the selected device.
"connected"
The transition from local to remote playback has happened. All commands will now take place on the remote device.
"disconnected"
The remote playback has not been initiated, has failed to initiate, or has been stopped.
In the following example the value of RemotePlayback.state
is printed to the console when the user agent successfully connects.
js
RemotePlayback.onconnect = () => { console.log(RemotePlayback.state); };
Specification |
---|
Remote Playback API # dom-remoteplayback-state |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
state |
56 | 79 | No | No | 43 | 13.1 | No | 56 | No | 43 | 13.4 | 6.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RemotePlayback/state