Skip to content

Instantly share code, notes, and snippets.

@renorram
Created October 7, 2016 00:02
Show Gist options
  • Save renorram/ff54d05f081d47ad48a15bcaae399622 to your computer and use it in GitHub Desktop.
Save renorram/ff54d05f081d47ad48a15bcaae399622 to your computer and use it in GitHub Desktop.
Sending commands to youtube iframe.
window.callPlayer = function (iframe, func, args) {
var iframe = document.getElementById(iframe);
var src = iframe.getAttribute('src');
if (src && src.indexOf('youtube.com/embed') !== -1) {
iframe.contentWindow.postMessage(JSON.stringify({
'event': 'command',
'func': func,
'args': args || []
}), '*');
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment