Skip to main content
jQuery(document).ready(function($) { $('.video-lightbox').each(function() { var videoUrl = $(this).closest('.elementor-post').find('.elementor-custom-field-youtube_video_url').text(); $(this).attr('href', videoUrl); }); $('.video-lightbox').magnificPopup({ type: 'iframe', iframe: { patterns: { youtube: { index: 'youtube.com/', id: function(url) { var m = url.match(/[\\?\\&]v=([^\\?\\&]+)/); if (!m || !m[1]) return null; return m[1]; }, src: 'https://www.youtube.com/embed/%id%?autoplay=1' } } } }); });