RemotePlayback.state

The state read-only property of the RemotePlayback interface returns the current state of the RemotePlayback connection.

Syntax

let state = RemotePlayback.state;

Value

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.

Examples

In the following example the value of RemotePlayback.state is printed to the console when the user agent successfully connects.

RemotePlayback.onconnect = function() {
  console.log(RemotePlayback.state);
}

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
state
56
79
No
No
43
13.1
No
56
No
43
13.4
6.0

© 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/RemotePlayback/state