Skip to content

Instantly share code, notes, and snippets.

@watson
Created October 25, 2010 22:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save watson/645925 to your computer and use it in GitHub Desktop.
Save watson/645925 to your computer and use it in GitHub Desktop.
Get a HTML5 audio element to replay without loading it from the server again
var audio = document.getElementById('my_audio');
audio.currentTime = 0;
audio.play();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment