Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

MediaStreamTrack.onmute

The MediaStreamTrack.onmute event handler is a property called when the mute event is received. Such an event is sent when the track is temporarily not able to send data.

Syntax

track.onmute = function;

Value

A function to serve as an EventHandler for the mute event. The event handler function receives a single parameter: the event object, which is a simple Event object.

Example

dc.onmute = function(ev) { alert("mute event detected!"); };

Specifications

Specification Status Comment
Media Capture and Streams
The definition of 'MediaStreamTrack.onmute' in that specification.
Editor's Draft Initial specification.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) No support No support (Yes) ?
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? ? No support No support ? ?

 

See also

Document Tags and Contributors

 Contributors to this page: Sheppy, fscholz, teoli
 Last updated by: Sheppy,