Open In App

HTML DOM Audio currentSrc Property

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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. 

HTML




<!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:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer 9 and above
  • Firefox 3.5 and above
  • Opera 12.1 and above
  • Apple Safari 3.1 and above


Last Updated : 23 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads