Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EmilSabitov/be84712dd03fe29175524401beb4e221 to your computer and use it in GitHub Desktop.
Save EmilSabitov/be84712dd03fe29175524401beb4e221 to your computer and use it in GitHub Desktop.
Work with youtube iframe
// iframe
var youtubePlayer = document.getElementsByClassName('youtube-player')[0];
// play
youtubePlayer.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}', '*');
// pause
youtubePlayer.contentWindow.postMessage('{"event":"command","func":"pauseVideo","args":""}', '*');
// stop
youtubePlayer.contentWindow.postMessage('{"event":"command","func":"stopVideo","args":""}', '*');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment