Open In App

HTML DOM Audio preload Property

The Audio preload property is used for setting or returning the value of the preload attribute of audio. The preload attribute is used to specify the way the author thinks the audio should be loaded when the page loads. 

The audio preload attribute allows the author to portray to the browser the way the user experience of a website should be implemented.



Syntax: 

audioObject.preload
audioObject.preload = "auto | metadata | none"

Property Values: 



Return Values: It returns a string value which specifies that what type of data should be preloaded in an audio file. 

The below program illustrates the Audio preload Property: 

Example: Find out the way the publisher wants the audio to be loaded when the page loads. 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        Audio preload Property
    </title>
</head>
 
<body style="text-align: center">
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <h2 style="font-family: Impact">
        Audio preload 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 return the value of the preload
        attribute of the audio, double click
        the "Return Preload Attribute" button.
      </p>
    <br>
    <button ondblclick="MyAudio()" type="button">
        Return Preload Attribute
    </button>
    <p id="test"></p>
 
    <script>
        let a =
            document.getElementById("Test_Audio");
        function MyAudio() {
            let a =
                document.getElementById("Test_Audio").preload;
            document.getElementById(
                "test").innerHTML = a;
        }
    </script>
</body>
</html>

Output: 

 

Supported Browsers: The browsers supported by DOM Audio preload Property are listed below: 


Article Tags :