Skip to content

Instantly share code, notes, and snippets.

@oztune
Created May 1, 2013 20:27
Show Gist options
  • Save oztune/5498097 to your computer and use it in GitHub Desktop.
Save oztune/5498097 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body>
<button onclick="play()">Play</button>
<script type="text/javascript">
function play() {
var snd = new Audio("http://work.colum.edu/~nlinscheid/sound-library/flute/Flute-breathy/Flute-breathy-G5.wav");
snd.load();
snd.play();
}
</script>
<body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment