34

I know how to start and stop a video with play() and pause(), but how do I put a video back to the start in HTML5 using javascript? is there a way to move the pointer back to the start?

rom
  • 490
  • 2
  • 5
  • 9

3 Answers3

52

Set the currentTime property back to 0.

Quentin
  • 857,932
  • 118
  • 1,152
  • 1,264
28

To have a proper stop functionality you could do the following:

var video = document.getElementById('vidId');
// or video = $('.video-selector')[0];
video.pause();
video.currentTime = 0;
video.load();

Note: This is the only version that worked for me in chrome using nodejs (meteorjs) in the backend, serving webm, mp4, ogg files

Matyas
  • 12,935
  • 3
  • 59
  • 71
-2

load() will reload video and put it back to start