Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<audio id="myAudio" controls src="horse.ogg">
</audio>
<p>Click the button to get the URL of the audio.</p>
<button onclick="myFunction()">Try it</button>
<p><b>Note:</b> The .ogg fileformat is not supported in IE and Safari.</p>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myAudio").src;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_audio_src by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:16:48 GMT -->
</html>