Skip to content

Instantly share code, notes, and snippets.

@aitor
Created May 14, 2012 21:50
Show Gist options
  • Save aitor/2697550 to your computer and use it in GitHub Desktop.
Save aitor/2697550 to your computer and use it in GitHub Desktop.
$('#videodeck').html(
'<iframe id="playing_video" src="'+ video_url +'&player_id=playing_video" width="640" height="360" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'
);
var iframe = $('#playing_video')[0], player = $f(iframe);
player.addEvent('ready', function() {
player.api("play");
player.addEvent('finish', return_slidedeck);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment