Actually, my problem is ,its not auto playing the audio in song (chinese.mp3)file. I gave it on github.
no error (console)
no glitch in website .
but, just audio is missing.
can you help me out?
—-link of my Memory Mania game project:-
github
—its online (netlify) hosted link :-
Link
I have tried :
<div class="music">
<audio autoplay>
<source src="./songs/chinese.mp3" type="audio/mp3" id="myaudio" />
Your browser does not support the audio element.
</audio>
</div>
even in some past commits applied this:
<audio autoplay id="myaudio">
<source src="./songs/chinese.mp3" type="audio/mp3" allow="autoplay"/>
Your browser does not support the audio element.
</audio>
js used:
// --------------- auto - play --------------------
var x = document.getElementById("myaudio").autoplay;
New contributor
speedy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.