I'm using the Youtube iframe API to dynamically load a youtube video when the user clicks a video's thumbnail image. When a video is already playing, and a user starts playing another video, I want to pause the first video that is already playing.
I also want to load the next video after a video is done playing.
Here's my code:
loaded_video_array = new Array();
$("div.embed").live('click', function() {
thumb.removeClass("play-button").addClass("pressed");
add_embedded_player();
});
function onPlayerStateChange(event) {
if (event.data == 0){
$("div.pressed").parents("div.video").next().find("div.embed").click();
}else if (event.data == 3){
for (var i=0;i < loaded_video_array.length; i++){
loaded_video_array[i].pauseVideo();
}
loaded_video_array.push(event.target);
}
};