Open In App

HTML DOM Audio muted Property

The Audio muted property is used to set or return whether the audio output should be muted or not. 

Syntax:



audioObject.muted
audioObject.muted = true|false

Property Values: This property accepts values true|false which is used to specify whether the audio output should be muted, or not. By default. it is false.  

Returns: The Audio muted property returns a Boolean value true if the audio is muted, otherwise, it returns false. 



The below program illustrates the Audio muted Property in HTML DOM: 

Example: This example turns off the audio sound. 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Audio muted Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
    <h2 style="font-family: impact;">
        Audio muted Property
    </h2><br>
    <audio id="Test_Audio" controls>
        <source src="gfg.ogg" type="audio/ogg">
        <source src="gfg.mp3" type="audio/mpeg">
    </audio>
    <p>
        For muting the audio, double click
        the "Enable Mute" button.
    </p>
    <br>
    <button ondblclick="MyAudio()"
            type="button">
        Enable Mute
    </button>
 
    <script>
        let a =
            document.getElementById("Test_Audio");
        function MyAudio() {
            a.muted = true;
            alert(a.muted);
        }
    </script>
</body>
 
</html>

Output:

 

Supported Browsers: The browsers supported by DOM Audio muted property are listed below:


Article Tags :