The MediaStreamTrack.onunmute
event handler is a property called when the unmute
event is received. Such an event is sent when the track is again able to send data.
track.onunmute = function;
function
is the name of a user-defined function, without the ()
suffix or any parameters, or an anonymous function declaration, such as function(event) {...}
. An event handler always has one single parameter, containing the event, here of type Event
.dc.onunmute = function(ev) { alert("unmute event detected!"); };
Specification | Status | Comment |
---|---|---|
Media Capture and Streams The definition of 'MediaStreamTrack.onunmute' in that specification. | Editor's Draft | Initial specification. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | No support | (Yes) | ? |
Feature | Android | Chrome for Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | ? | ? | (Yes) | ? | No support | ? | ? |
© 2005–2018 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/MediaStreamTrack/onunmute