Need help HTML5 Video autoplay

espressox

Registered Member
Joined
Apr 24, 2011
Messages
75
Reaction score
7
Anyone know any tricks to get a HTML Video element (with sound) to play on page load or a few seconds later
Wondering if there is a JS click simulator but cant find anything
 
you will try to search devdocs and Javatpoint it will help html5 video autoplay for you .
 
Just use video parent div and autoplay class inside.

Code:
<video autoplay>
<source src="https://sounce.com/videolink.mp4" type="video/mp4">
</video>
 
Thats the official way to do it but new browsers have blocked that feature
 
Back
Top