Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Audio currentSrc Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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

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="sample1.mp3"
                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() {
            var a =
                document.getElementById(
                  "Test_Audio").currentSrc;
            document.getElementById("test").innerHTML = a;
        }
    </script>
 
</body>
 
</html>


Output:

  • Before clicking the button:
  • After clicking the button:

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

My Personal Notes arrow_drop_up
Last Updated : 16 Aug, 2022
Like Article
Save Article
Similar Reads
Related Tutorials