Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<p>Click the button to create an AUDIO element with controls that will play a sound in a .mp3 or .ogg file format (depending on browser support).</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
  var x = document.createElement("AUDIO");
  if (x.canPlayType("audio/mpeg")) {
    x.setAttribute("src","horse.mp3");
  } else {
    x.setAttribute("src","horse.ogg");
  }
  x.setAttribute("controls", "controls");
  document.body.appendChild(x);
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_audio_create by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:41:33 GMT -->
</html>