Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Created April 26, 2018 05:25
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 anwerashif/1e2f58d9238384a5781f14d04cabaf52 to your computer and use it in GitHub Desktop.
Save anwerashif/1e2f58d9238384a5781f14d04cabaf52 to your computer and use it in GitHub Desktop.
Pull audio file and play onclick
$(document).ready(function() {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'https://rainastudio.com/wp-content/themes/rainastudio/sound/rainastudio.mp3');
audioElement.autoPlay=false;
$('#soundPlay').click(function(e) {
audioElement.play();
// Cancel the default action
e.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment