xxxxxxxxxx
// HTML code
<video id="myVideo" width="320" height="240" controls>
<source src="path/to/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
// jQuery code
$(document).ready(function(){
$('#myVideo').get(0).play();
});