'fullpage.js Add delay to beforeLeave event until video is ready to play

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!



Solution 1:[1]

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.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Alvaro