I've created simple audio player in browser but have some troubles. For example I have 20 audio tags in my html code.
<audio class="tr_audio">
<source src="track1.mp3" type="audio/mpeg">
<source src="ogg/track1.ogg" type="audio/ogg">
</audio>
<audio class="tr_audio">
<source src="track2.mp3" type="audio/mpeg">
<source src="ogg/track2.ogg" type="audio/ogg">
</audio>
<audio class="tr_audio">
<source src="track3.mp3" type="audio/mpeg">
<source src="ogg/track3.ogg" type="audio/ogg">
</audio>
...
<audio class="tr_audio">
<source src="track20.mp3" type="audio/mpeg">
<source src="ogg/track20.ogg" type="audio/ogg">
</audio>
and have list with 20 items. One item for one track. And I play it on click event. Trouble that when page is loading all 20 tracks loading in cache, right? And some tracks may can not be loaded at all or loaded partially. So, attempt to play such track will be fail. (for example track17 wasn't loaded and if I click on item17 song will not play). Also, I stop the previous song like this
$('.'+part+'_audio')[song_number].currentTime = 0;
$('.' part '_audio')[song_number].pause();
So, if the previous track wasn't loaded fully or was loaded partially, this string
`$('.'+part+'_audio')[song_number].currentTime = 0;`
will return error Uncaught Error: INVALID_STATE_ERR: DOM Exception 11. So I must reload page a several times - then all 20 songs will load in my cache and playing will occur with no errors. But it is the wrong way. Please, tell me the right. Thank you!
You can see my player here (not advertising): http://www.pompeya-for.me
I just start to learn jQuery and create this player for practice - please, don't shock with "indian code".
$('.' part '_audio')? I assume you mean$('.'+part+'_audio'). Note the+signs. – Rocket Hazmat Nov 27 '12 at 16:41