Skip to content

Instantly share code, notes, and snippets.

@rbenvenuto
Created February 20, 2018 18:12
Show Gist options
  • Save rbenvenuto/f1743dc45df97960d04e2a620899e2da to your computer and use it in GitHub Desktop.
Save rbenvenuto/f1743dc45df97960d04e2a620899e2da to your computer and use it in GitHub Desktop.
Stop video execution when click on any element
$('div.sideview-close-btn').click(function() {
// comando que pausa o vídeo
$('#popup-youtube-player')[0].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