Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var video = document.getElementById('vid')
  2. // When the 'ended' event fires
  3. video.addEventListener('ended', function(){
  4. // Reset the video to
  5. video.currentTime = 0;
  6. // And play again
  7. video.load();
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement