Skip to content

Instantly share code, notes, and snippets.

@AlexWheeler
Created September 22, 2016 01:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save AlexWheeler/e65088e50f50cd9866ee8addd21fe1cf to your computer and use it in GitHub Desktop.
Save AlexWheeler/e65088e50f50cd9866ee8addd21fe1cf to your computer and use it in GitHub Desktop.
<div id="player">Click ME FRITZ</div>
<script>
var player = new Audio("/img/songs/test.mp3"); // or wherever this is being served from
$(document).ready(function() {
$('#player').click(function(){
player.play();
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment