Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sebgates/fe734a825c84fc377a67 to your computer and use it in GitHub Desktop.
Save sebgates/fe734a825c84fc377a67 to your computer and use it in GitHub Desktop.
Adding mp3 audio to a button in Bootstrap
<!--Add this code to your website and change the audio file name accordingly -->
<audio id="sound1" src="audio/sound1.mp3" preload="auto"></audio>
<button onclick="document.getElementById('sound1').play();">Play
it</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment