Skip to content

Instantly share code, notes, and snippets.

@jdeeburke
Created July 9, 2013 21:37
Show Gist options
  • Save jdeeburke/5961508 to your computer and use it in GitHub Desktop.
Save jdeeburke/5961508 to your computer and use it in GitHub Desktop.
Pause YouTube embed in iFrame
/**
* iFrame Must have '&/?enablejsapi=1'
*
* @param slideIndex
*/
function pauseVideoOnSlide(slide)
{
var iframe = $(slide).find("iframe")[0];
if (iframe) {
var target = iframe.contentWindow;
target.postMessage('{"event":"command","func":"pauseVideo","args":""}', '*');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment