Skip to content

Instantly share code, notes, and snippets.

@danieliser
Last active June 3, 2018 08:04
Show Gist options
  • Select an option

  • Save danieliser/3b0e18d14e73b352bcac to your computer and use it in GitHub Desktop.

Select an option

Save danieliser/3b0e18d14e73b352bcac to your computer and use it in GitHub Desktop.
Auto Play YouTube video on popup open.
jQuery('#pum-123')
.on('pumBeforeOpen', function () {
var $iframe = jQuery('iframe', jQuery(this)),
src = $iframe.prop('src');
$iframe.prop('src', '').prop('src', src + '?autoplay=1');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment