document.addEventListener("DOMContentLoaded", function() { // Create modal structure $('body').append(`
`); // Click handler for videos $(document).on('click', '.an_social_vid', function() { const videoSrc = $(this).attr('src'); $('#modalVideo').attr('src', videoSrc); $('#modalVideo').attr('controls', true); // Add controls for fullscreen option $('#videoModal').fadeIn(); // Play the video in modal $('#modalVideo')[0].play(); return false; }); // Close modal handler $('#closeModal').on('click', function() { $('#modalVideo')[0].pause(); $('#videoModal').fadeOut(); }); // Close when clicking on backdrop (but not the video) $('#videoModal').on('click', function(e) { if (e.target.id === 'videoModal') { $('#modalVideo')[0].pause(); $('#videoModal').fadeOut(); } }); });