Skip to content

Instantly share code, notes, and snippets.

@kieranjones
Created June 26, 2018 03:55
Show Gist options
  • Save kieranjones/ff090df1ae27f3849836013a93ea098d to your computer and use it in GitHub Desktop.
Save kieranjones/ff090df1ae27f3849836013a93ea098d to your computer and use it in GitHub Desktop.
Loop HTML5 video file in browser
var video = document.getElementsByTagName('video')[0];
video.setAttribute('loop', 'true');
video.play();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment