Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save danieliser/76c10db40326210f886c to your computer and use it in GitHub Desktop.
Auto Play HTML5 video on popup open.
jQuery('#pum-123')
.on('pumBeforeClose', function () {
var $video = jQuery('video', jQuery(this));
$video[0].pause();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment