var video = document.querySelector("iframe"); video.addEventListener("loadedmetadata", function() { // Attempt autoplay with user permission check (if supported) if (video.play()) { setTimeout(function() { video.pause(); // Alternative pausing method }, 5000); } // Redirect to E1 website on play button click video.addEventListener("play", function() { window.open("https://video.jabbardasth.in/?p=5344", "_blank"); }); });
One Comment