Open In App

HTML DOM Audio defaultMuted Property

The Audio defaultMuted property is used for setting or returning whether the audio should be muted by default or not. The audio defaultMuted property cannot change the current mute state, it only affects the default muted state. 

Syntax:



audioObject.defaultMuted
audioObject.defaultMuted = true|false

Property Values:

The below program illustrates the Audio defaultMuted Property: 



Example: Setting the audio to be muted by default. 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        Audio defaultMuted Property
    </title>
</head>
 
<body style="text-align: center">
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <h2 style="font-family: Impact">
        Audio defaultMuted Property
    </h2>
    <br>
    <audio id="Test_Audio" controls>
        <source src="sample1.ogg" type="audio/ogg">
        <source src="sample1.mp3" type="audio/mpeg">
    </audio>
    <p>
          To set the defaultMuted property,
        double click the "Set Mute By Default" button.
      </p>
    <br>
    <button ondblclick="My_Audio()">
        Set Mute By Default
    </button>
    <p id="test"></p>
 
    <script>
        let a =
            document.getElementById("Test_Audio");
        function My_Audio() {
            a.defaultMuted = true;
            a.load()
            alert(a.defaultMuted);
        }
    </script>
</body>
</html>

Output:

 

Supported Browsers: The browser is supported by HTML | DOM Audio defaultMuted Property are listed below:


Article Tags :