Youtube iframe api, subscribing to events?

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: jsfiddle.net/w2w5x ) Core functions defined at 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(); } } } }); } }).

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: jsfiddle.net/w2w5x/) // Core functions defined at 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(); } } } }); } }).

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions