Skip to content

Instantly share code, notes, and snippets.

@adamrabung
Created October 15, 2014 20:32
Show Gist options
  • Save adamrabung/f2d957ba2a24a0b43eef to your computer and use it in GitHub Desktop.
Save adamrabung/f2d957ba2a24a0b43eef 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">
var sound;
var url = "https://www.dropbox.com/s/lu9wx75la7tkrsf/duck.mp3?dl=1";
function play() {
if (!sound) {
// first time: create
sound = soundManager.createSound({
id: 'foo',
url: url
});
sound.play();
} else {
// subsequent cases: re-use
sound.play({
url: url
});
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment