Skip to content

Instantly share code, notes, and snippets.

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