Skip to content

Instantly share code, notes, and snippets.

@KustomDeveloper
Created July 29, 2022 19:20
Show Gist options
  • Save KustomDeveloper/cef509e8239ca8170cfaec47dc51a7dc to your computer and use it in GitHub Desktop.
Save KustomDeveloper/cef509e8239ca8170cfaec47dc51a7dc to your computer and use it in GitHub Desktop.
Load Video On Click
<script>
jQuery(function() {
jQuery('.video-container').on('click', function(e) {
e.preventDefault();
var iframe = j(this).find('iframe');
var url = iframe.attr('data-src');
var srcValue = iframe.attr('src');
if(srcValue == 'about:blank') {
iframe.attr('src', url);
iframe.css('pointer-events', 'auto');
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment