This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The BroadcastChannel
interface represents a named channel that any browsing context of a given origin can subscribe to. It allows communication between different documents (in different windows, tabs, frames or iframes) of the same origin. Messages are broadcasted via a message
event fired at all BroadcastChannel
objects listening to the channel.
BroadcastChannel()
This interface also inherits properties from its parent, EventTarget
.
BroadcastChannel.name
DOMString
, the name of the channel.BroadcastChannel.onmessage
EventHandler
property that specifies the function to execute when a message
event is fired on this object.This interface also inherits methods from its parent, EventTarget
.
BroadcastChannel.postMessage()
BroadcastChannel
object listening to the same channel.BroadcastChannel.close()
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'BroadcastChannel' in that specification. | Living Standard | Initial definition. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 54.0 | 38 (38) | No support | 41 | No support |
Available in workers | 54.0 | 38 (38) | No support | 41 | No support |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | No support | No support | 38.0 (38) | No support | 41 | No support | 54.0 |
Available in workers | No support | No support | 38.0 (38) | No support | 41 | No support | 54.0 |
ServiceWorker
.
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel