RTCDataChannel: message event
The WebRTC message
event is sent to the onmessage
event handler on an RTCDataChannel
object when a message has been received from the remote peer.
Bubbles | No |
---|---|
Cancelable | No |
Interface | MessageEvent |
Event handler property | onmessage |
Note: The message
event uses as its event object type the MessageEvent
interface defined by the HTML specification.
Examples
For a given RTCDataChannel
, dc
, created for a peer connection using its createDataChannel()
method, this code sets up a handler for incoming messages and acts on them by adding the data contained within the message to the current document as a new <p>
(paragraph) element.
dc.addEventListener("message", ev => { let newParagraph = document.createElement("p"); let textNode = document.createTextNode(event.data); newParagraph.appendChild(textNode); document.body.appendChild(newParagraph); }, false);
Lines 2-4 create the new paragraph element and add the message data to it as a new text node. Line 6 appends the new paragraph to the end of the document's body.
You can also use an RTCDataChannel
object's onmessage
event handler property to set the event handler:
dc.onmessage = ev => { let newParagraph = document.createElement("p"); let textNode = document.createTextNode(event.data); newParagraph.appendChild(textNode); document.body.appendChild(newParagraph); }
Specifications
Specification |
---|
WebRTC 1.0: Real-Time Communication Between Browsers (WebRTC 1.0) # event-datachannel-message |
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 | |
message_event |
24 |
≤79 |
Yes |
No |
15 |
Yes |
≤37 |
25 |
Yes |
14 |
Yes |
1.5 |
See also
- WebRTC API
- A simple RTCDataChannel example
- Related events:
open
,close
, anderror
RTCDataChannel.send()
© 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/RTCDataChannel/message_event