Skip to content
Advertisement

play random video on each visit/refresh with iFrame javascript

How do I create a random video to play every time a user visits/reloads the page with Javascript?

For example, if one person were to go onto my domain, the iFrame would try to load any of the .mp4 files inside of my media file directory where it has like 4 different .mp4 videos. Here is my code below.

Code:

JavaScript

Advertisement

Answer

You need to use Math.random to choose a random video from a list. Then add the chosen video url to the html element, and trigger the “play” event.

JavaScript

Related question: changing source on html5 video tag

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement