Guys how do I play an mp3 file and then another once the first has finished?
I have tried the following without success..
$(\'#file1)[0].play( functi
I used @blasteralfred's code to create a function to play a indefinite series of sound files using jQuery:
function playSounds(soundFileIds) {
if (soundFileIds instanceof Array) {
var soundFileId = soundFileIds.shift();
playSound(soundFileId);
$(soundFileId).bind('ended', function() {
playSounds(soundFileIds);
});
} else {
playSound(soundFileIds);
}
}
The conditional test for an array allows me to backport this to my existing code that calls this function with just a string. Thanks!