Skip to content

Instantly share code, notes, and snippets.

@phamquocbuu
Created May 23, 2013 03:50
Show Gist options
  • Save phamquocbuu/5632631 to your computer and use it in GitHub Desktop.
Save phamquocbuu/5632631 to your computer and use it in GitHub Desktop.
JavaScript with Youtube
$('[id*="tab-item"]').click(function(){
$('iframe').each(function(index){
if ( $(this)[0] !== undefined ) {
iframe = $(this)[0].contentWindow;
iframe.postMessage('{"event":"command","func":"' + 'pauseVideo' + '","args":""}', '*');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment