Firefox Tomorrow

web api instance property

HTMLMediaElement: muted property

View on MDN ↗

The HTMLMediaElement.muted property indicates whether the media element is muted.

Value

A boolean value. true means muted and false means not muted.

Examples

const obj = document.createElement("video");
console.log(obj.muted); // false

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also