So far, i can pause the video, but not rollback it to the beginning (so that it start from 0 next time).
<video id="video" src="videos/movie.ogg" type='video/ogg' controls='controls'>
Your brwoser doesn't seems to support video
</video>
jQuery code:
$('#video')[0].pause();//Pause video
Ok, it’s paused, but obviously, next time i will get the video run from where it got paused. I need to rollback the video and put it at its initial state (at the 0 seconds).
Is there any way to do that? Thanx in advance.
should be
W3C current Time doc