Skip to content

Instantly share code, notes, and snippets.

@mrshu
Created January 31, 2013 17:25
Show Gist options
  • Save mrshu/4684559 to your computer and use it in GitHub Desktop.
Save mrshu/4684559 to your computer and use it in GitHub Desktop.
Simple example of usage of HTML5 audio tag
<!DOCTYPE html>
<html>
<head>
<script>
var player = document.getElementById("player");
player.play();
</script>
</head>
<body>
<audio id="player">
<source src="http://www.jplayer.org/audio/mp3/TSP-01-Cro_magnon_man.mp3" />
<source src="http://www.jplayer.org/audio/ogg/TSP-01-Cro_magnon_man.ogg" />
</audio>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment