Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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