i'am looking for a way to wait with the scroll until the video has been preloaded and is ready to play. I have already seen this article. But I didn't get it how I can wait for a video to be loaded.
I'am thankful for any hints!
i'am looking for a way to wait with the scroll until the video has been preloaded and is ready to play. I have already seen this article. But I didn't get it how I can wait for a video to be loaded.
I'am thankful for any hints!
You can check if a video is loaded or not by attaching to it the 'load' event:
document.querySelector('video').addEventListener('load', function(){
//media is loaded
});
So you can use any logic there.