im trying to create a sort of playlist feature that will work on the iPhone using a combination of HTML5 and javascript. I'm very new to the platform and I was hoping maybe someone here could help me identify the problem with my code. The first song properly autoplays, but when it ends the next one does not load and play. The javascript code for my site is provided below, thanks in advance. (my apologies if this code is terribly messed up, i assembled this from what iv learned and what i could find different places online)

<script type="text/javascript">
var songname="Bottoms Up";
var counter=1;
var totalsongs=3;
while (counter<=totalsongs-1) {
document.write(<h2>songname</h2>);
switch (counter) {
case 1:
var nextSong="audio/Hey.mp3";
var audioPlayer=document.getElementById('audioPlayer');
audioPlayer.onend = function() {
audioPlayer.src = nextSong;
songname="Hey";
counter=(counter+1);
if(counter>totalsongs-1) {
counter=1;
    } //if close
    } //onend function close
case 2:
var nextSong="audio/I Like It.mp3";
var audioPlayer=document.getElementById('audioPlayer');
audioPlayer.onend = function() {
audioPlayer.src = nextSong;
songname="I Like It";
counter=(counter+1);
if(counter>totalsongs-1) {
counter=1;
    } //if close
    } //onend function close
} //switch close
} //while close
</script>
<center><audio src="audio/Bottoms Up.mp3" autoplay controls /></center>
link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

A few things:

Give the audio element an id:

<audio src="audio/Bottoms Up.mp3" autoplay controls id="audioPlayer" /></center>

Use arrays instead of many variables:

var songs=({{"title": "First title","filename":"firstfile.mp3"},
        {"title": "Second title","filename":"secondfile.mp3"}});

Listen for the event ended like this:

document.getElementById("audioPlayer").addEventListener("ended", nextSong, false);

And put the script in the <head> element.

link|improve this answer
sorry one last question, does the event listener go in the body or the head? I haven't used one before now. – Andrew Nov 6 '10 at 21:36
@Andrew: In the head. – thejh Nov 6 '10 at 21:38
feedback
var audioPlayer=document.getElementById('audioPlayer');

… will error, since the element doesn't have an id.

link|improve this answer
oh, I had found this done with videoPlayer elsewhere and assumed the naming would be the same, is there an online resource i should consult to find the names for such things? – Andrew Nov 6 '10 at 20:36
The video player would have still needed an id. I suggest reading the section "JavaScript core skills" at dev.opera.com/articles/view/… – Quentin Nov 6 '10 at 20:39
oh now I understand what the other person did, and I'll check out that link thanks, I had just been working my way through the w3schools javascript guide – Andrew Nov 6 '10 at 20:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.