Created
February 27, 2020 16:25
-
-
Save hayatbiralem/f001ebbf0c25137b3dee431559ce6e0a to your computer and use it in GitHub Desktop.
Autoplay Ultimate Addons Video when Popup Maker Modal Opened
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
$(document).on('pumBeforeOpen', function (e) { | |
console.log('pumBeforeOpen', e); | |
$(e.target).find('.ultv-video__play').parent().each(function () { | |
if ($(this).data('default-html')) { | |
$(this).html($(this).data('default-html')); | |
} else { | |
$(this).data('default-html', $(this).html()); | |
} | |
}); | |
}); | |
$(document).on('pumAfterOpen', function (e) { | |
console.log('pumAfterOpen', e); | |
$(e.target).find('.ultv-video__play').each(function () { | |
$(this).trigger('click'); | |
}); | |
}); | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can insert this code snipped right into the page with raw html component or some theme option's javascript area or you can make a plugin for it.