Skip to content

Instantly share code, notes, and snippets.

@adamrabung
Last active August 29, 2015 14:06
Show Gist options
  • Save adamrabung/3cff138a8e558754a1e8 to your computer and use it in GitHub Desktop.
Save adamrabung/3cff138a8e558754a1e8 to your computer and use it in GitHub Desktop.
<html>
<body>
<a href="#" onclick="play()">Play</a>
</body>
</html>
<script type="text/javascript" src="https://www.dropbox.com/s/e0sejqv37b1g867/soundmanager2-jsmin.js?dl=1"></script>
<script type="text/javascript">
function play() {
console.log("play clicked")
var sound = soundManager.createSound({
id : "s",
url : "https://www.dropbox.com/s/lu9wx75la7tkrsf/duck.mp3?dl=1"
});
sound.play();
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment