Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save danieliser/7c1fa4d3e6c5605af91d to your computer and use it in GitHub Desktop.
Auto Play Vimeo 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