Skip to content

Instantly share code, notes, and snippets.

@danieliser
Last active November 28, 2016 05:01
Show Gist options
  • Select an option

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

Select an option

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