how to play autoplay video with no controls html code example
Example 1: html video autoplay
Syntax:
<video autoplay>
Example:
<video controls autoplay>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
</video>
Example 2: html video tag autoplay not working
<script type="text/javascript">
window.onload= function(){
var x = document.getElementById("home-video").play();
}
Example 3: html video disable controls
<video width="300" height="200" autoplay="autoplay">
<source src="video/supercoolvideo.mp4" type="video/mp4" />
</video>