// Creating a video element var video = document.createElement('video'); video.style.maxWidth = '100%'; // Creating source elements for different resolutions var source720p = document.createElement('source'); source720p.src = 'https://dp3rhc3eohw2j.cloudfront.net/Distribute/jwp1/2022/Rohit Kapur, Managing Director Of India, Discusses Our Employer Policies Throughout Covid-19/bO3yQPEf/720p.mp4'; source720p.type = 'video/mp4'; video.appendChild(source720p); var source360p = document.createElement('source'); source360p.src = 'https://dp3rhc3eohw2j.cloudfront.net/Distribute/jwp1/2022/Rohit Kapur, Managing Director Of India, Discusses Our Employer Policies Throughout Covid-19/bO3yQPEf/360p.mp4'; source360p.type = 'video/mp4'; video.appendChild(source360p); // Setting video attributes video.classList.add('ab-video'); video.controls = true; // Adding a poster (cover image) video.poster = 'https://dp3rhc3eohw2j.cloudfront.net/Distribute/jwp1/2022/Rohit Kapur, Managing Director Of India, Discusses Our Employer Policies Throughout Covid-19/bO3yQPEf/thumb.jpg'; // Appending the video element to the body of the document var container = document.createElement('div'); container.classList.add('ab-video-container'); container.appendChild(video); var scriptTag = document.currentScript; // Get the current script tag scriptTag.parentNode.insertBefore(container, scriptTag.nextSibling);