const videoContainer = [...document.querySelectorAll('.bg-video-wrapper')]; const placeholderImage = [...document.querySelectorAll('.placeholder-image')]; const addBgVideos = (src, img, container) => { // Create the video embed code const videoEmbedCode = ``; // Add the video embed code to the video container container.innerHTML = videoEmbedCode; // Remove the placeholder image if (img) { img.remove(); } }; window.addEventListener('load', function () { // Wait for the page to finish loading videoContainer.forEach((container, i)=>{ addBgVideos(container.dataset.src,placeholderImage[i],container); }) });