Baseline Widely available
The HTMLMediaElement.defaultMuted
property reflects the muted
HTML attribute, which indicates whether the media element's audio output should be muted by default. This property has no dynamic effect. To mute and unmute the audio output, use the muted
property.
A boolean value. A value of true
means that the audio output will be muted by default.
const videoEle = document.createElement("video");
videoEle.defaultMuted = true;
console.log(videoEle.outerHTML); // <video muted=""></video>
Specifications Browser compatibility See also
HTMLMediaElement
: Interface used to define the HTMLMediaElement.defaultMuted
propertyHTMLMediaElement.muted
HTMLMediaElement.volume
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4