YouTube - markhowellsmead/helpers GitHub Wiki
Control an embedded YouTube video player
$('.youtube_player_iframe').each(function(){
this.contentWindow.postMessage('{"event":"command","func":"stopVideo","args":""}', '*')
this.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}', '*')
});