The MessageChannel interface of the Channel Messaging API allows us to create a new message channel and send data through it via its two MessagePort properties.
Note: This feature is available in Web Workers
The MessageChannel interface of the Channel Messaging API allows us to create a new message channel and send data through it via its two MessagePort properties.
Note: This feature is available in Web Workers
MessageChannel.port1 Read only
Returns port1 of the channel.
MessageChannel.port2 Read only
Returns port2 of the channel.
MessageChannel()Returns a new MessageChannel object with two new MessagePort objects.
In the following example, you can see a new channel being created using the MessageChannel.MessageChannel constructor.
When the IFrame has loaded, we register an onmessage handler for MessageChannel.port1 and transfer MessageChannel.port2 to the IFrame using the window.postMessage method along with a message.
When a message is received back from the IFrame, the onMessage function outputs the message to a paragraph.
js
const channel = new MessageChannel(); const output = document.querySelector(".output"); const iframe = document.querySelector("iframe"); // Wait for the iframe to load iframe.addEventListener("load", onLoad); function onLoad() { // Listen for messages on port1 channel.port1.onmessage = onMessage; // Transfer port2 to the iframe iframe.contentWindow.postMessage("Hello from the main page!", "*", [ channel.port2, ]); } // Handle messages received on port1 function onMessage(e) { output.innerHTML = e.data; }
For a full working example, see our channel messaging basic demo on GitHub (run it live too).
| Specification |
|---|
| HTML Standard # message-channels |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
MessageChannel |
2 | 12 | 41 | 10 | 10.6 | 5 | 4.4 | 18 | 41 | 11 | 4.2 | 1.0 |
MessageChannel |
2 | 12 | 41 | 10 | 10.6 | 5 | 4.4 | 18 | 41 | 11 | 4.2 | 1.0 |
port1 |
2 | 12 | 41 | 10 | 10.6 | 5 | 4.4 | 18 | 41 | 11 | 4.2 | 1.0 |
port2 |
2 | 12 | 41 | 10 | 10.6 | 5 | 4.4 | 18 | 41 | 11 | 4.2 | 1.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/MessageChannel