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
You need to wait until audio source loads before you set the current time.
audio
$(function(){ $('audio').bind('canplay', function(){ $(this)[0].currentTime = $.cookie('audioTime'); }); });