Youtube iframe API: how do I control a iframe player that's already in the HTML?

How do I subscribe to events here? I would like to listen for video finish.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Have a look at my function as defined at this answer: Listening for Youtube Event in jQuery.

In your case, implement the core functions as shown below (Fiddle: http://jsfiddle.net/w2w5x/)

// Core functions defined at http://stackoverflow.com/q/7988536#7988536
var player;
YT_ready(function(){
    var frameID = getFrameID("YOUR-frame-or-container-ID-here");
    if (frameID) { //If the frame exists
        player = new YT.Player(frameID, {
            events: {
                "onStateChange": function(event){
                    if(event.data == "0") {
                        //The video has finished
                        alert("The video has finished!");
                        //Do something, example: play again
                        player.playVideo();
                    }
                }
            }
        });
    }
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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