Hi! I am trying to autoplay a song when a page loads. I've tried a few different codes that were suggested and none seem to work. I would like the audio to play automatically and the player to be invisible.
I tried this code:
<audio autoplay>
<source src="spotify:track:2T1AgNLmRcFA54PfFWmfJe" type="audio">
Your browser does not support the audio element.
</audio>
And this:
<audio src="spotify:track:2T1AgNLmRcFA54PfFWmfJe" loop="true" autoplay="true" controls="false">
</audio>
Neither have worked. I also tried to insert audio controls and they appear with this code, but the song will not play.
Like this:
<audio controls>
<source src="spotify:track:2T1AgNLmRcFA54PfFWmfJe" type="audio">
Your browser does not support the audio element.
</audio>
I've never tried to embed from spotify and not from the an MP3 on my computer, is this the issue? Do I need to go straight from the MP3 to accomplish this? Here is the link to the song: https://open.spotify.com/track/2T1AgNLmRcFA54PfFWmfJe?si=yidZCyvVRVem4hc3BuMwsA
Thanks in advance!
Blakey