My code in the aspx page allows for playing audio files of wav format within the browser. However, I have encountered an issue where wav audios are not playing in Chrome browser, while they work in Firefox. How can I address this exception?
<script>
window.onload = function () { document.getElementById("audio").play(); }
window.addEventListener("load", function () { document.getElementById("audio").play(); });
</script>
<body>
<audio id='audio' controls autoplay>
<source src="Sounds/DPM317.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</body>