I have this audio tag playing in the background, and I\'m able to store the progress in seconds to a cookie. But in no way I\'m able to start the audio from that cookie. (fo
This works for me.
if (!isNaN(audio.duration)) { audio.currentTime = 0; }
Hope it helps!