1 - I want to auto start my video when user visit my website.
2- No controls required though it is showing currently because when I remove them my video does not display at all.
3- Can I show loading bar or any loading image so when it is in loading span the user would be able to see loading bar which gives idea of video existence.
Below is my code
<video class="video" id="myVideo" controls>
<source src="images/UnlimitedTeamVideo.mp4" type="video/mp4">
<source src="UnlimitedTeamVideo.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
<script type="text/javascript">
$(document).ready(function(){
$("#myVideo").bind('ended', function(){
location.href="homepage.php";
});
});
</script>