0

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!

cosirax
  • 1
  • 1

1 Answers1

0

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.

Alvaro
  • 40,778
  • 30
  • 164
  • 336