Video Tag Test

by Md Naveed

HTML

<script>
function fnLoad() {
var timerId = setTimeout(function() {
clearTimeout(timerId);
var videoEl = document.getElementById('videoEl');
videoEl.play();
}, 500);
}
</script>
<body onload="fnLoad()">

<video id="videoEl" width="320" height="240" controls autoplay>
  <source src="https://fansnstars.com/PF.Site/flavors/tmblock6/assets/video/banner.webm" type="video/webm">
<source src="https://fansnstars.com/PF.Site/flavors/tmblock6/assets/video/banner.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>

<p><strong>Note:</strong> The video tag is not supported in Internet Explorer 8 and earlier versions.</p>

</body>