Audio won't autoplay on website?
[Link removed by moderator as per forum guidelines.]
I'm using this script. I have the player hidden on purpose and the audio file is in the root of the site in the public.html folder. For some reason it is not playing?
<audio autoplay id="volumeset">
<source src="wolfhowl.mp3" type="audio/mpeg">
</audio>
<script>
var audio = document.getElementById("volumeset");
audio.volume = 0.1;
</script>
