Video playback using JS

Is it possible and one of the best ways to playback video using JS? And if so, can you control that if a person was cut off, they can return where they left off.

Yes, you can use the <video> element, and monitor the timeupdate media event for the timestamp of the video.

The example there also shows setting the currentTime property to have the video start at a given time.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.