Video muted Property
Example
Turn off sound for a video:
  
    document.getElementById("myVideo").muted = true;
Try it Yourself »
Definition and Usage
The muted property sets or returns whether the audio output of the video should be muted (sound turned off).
This property reflects the <video> muted attribute.
When present, it specifies that the audio output of the video should be muted.
Note: The <video> element is new in HTML5.
Browser Support
 
 
 
 

The muted property is supported in all major browsers.
Note: Internet Explorer 8 and earlier versions, do not support the <video> element.
Syntax
Return the muted property:
	videoObject.muted
Set the muted property:
	videoObject.muted=true|false
Property Values
| Value | Description | 
|---|---|
| true|false | Specifies whether the audio output of the video should be muted, or not 
 | 
Technical Details
| Return Value: | A Boolean, returns true if the audio output of the video is muted, otherwise it returns false | 
|---|---|
| Default Value: | false | 
More Examples
Example
Find out if the sound is turned off:
	var x = document.getElementById("myVideo").muted;
The result of x will be:
	true
Try it Yourself »
Related Pages
HTML reference: HTML <video> muted attribute
 Video Object
 Video Object

