Open In App

HTML DOM Audio networkState Property

The Audio networkState property is used to return the current network state of the audio. 

Syntax:



audioObject.networkState

Return Value: The Audio networkState returns a number that may have the following values:

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



Example: Getting the current network state of the audio. 




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

Output:

 

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


Article Tags :