Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JamesHusband/95bfd60589388ffb861fad615305f791 to your computer and use it in GitHub Desktop.
Save JamesHusband/95bfd60589388ffb861fad615305f791 to your computer and use it in GitHub Desktop.
if ( $('.embed-video-banner').length ) {
$( window ).scroll( function() {
$( 'iframe' ).each( function() {
if ( $( window ).scrollTop() > $( this ).offset().top - 200 ) {
player.playVideo();
}
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment