Open In App

HTML DOM Audio currentSrc Property

The Audio currentSrc property is used for returning the URL of the current audio. The Audio currentSrc property returns an empty string if no audio is specified. The Audio currentSrc property is a read-only property. 

Syntax:



audioObject.currentSrc

The below program illustrates the Audio currentSrc Property: 

Example: Getting the URL of the current audio. 






<!DOCTYPE html>
<html>
 
<head>
    <title>
        Audio currentSrc Property
    </title>
</head>
 
<body style="text-align: center">
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <h2 style="font-family: Impact">
        Audio currentSrc Property
    </h2>
    <br>
    <audio id="Test_Audio" controls autoplay>
        <source src="sample1.ogg" type="audio/ogg">
        <source src="beep-01a.wav" type="audio/mpeg">
    </audio>
    <p>
          To return the URL of the current audio,
        double click the "Return Source" button.
      </p>
    <br>
    <button ondblclick="My_Audio()">
        Return Source
    </button>
    <p id="test"></p>
 
    <script>
        function My_Audio() {
            let a =
                document.getElementById(
                    "Test_Audio").currentSrc;
            document.getElementById("test").innerHTML = a;
        }
    </script>
 
</body>
 
</html>

Output:

 

Supported Browsers: The browser supported by HTML DOM Audio currentSrc Property are listed below:


Article Tags :