Skip to content

Instantly share code, notes, and snippets.

@nzoschke
Created February 7, 2010 20:42
Show Gist options
  • Save nzoschke/297666 to your computer and use it in GitHub Desktop.
Save nzoschke/297666 to your computer and use it in GitHub Desktop.
<audio />
<script type="text/javascript">
var audio = document.getElementsByTagName('audio')[0];
audio.src = "http://example.com/song.mp3";
audio.load();
audio.play();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment