Skip to content

Instantly share code, notes, and snippets.

@YossiDavid
Created March 2, 2020 15:22
Show Gist options
  • Save YossiDavid/f7673e11d90ca238bb8173a4a980e18a to your computer and use it in GitHub Desktop.
Save YossiDavid/f7673e11d90ca238bb8173a4a980e18a to your computer and use it in GitHub Desktop.
<button id="player" type="button" onclick="javascript:toggleSound();"> Click to Toggle Sound</button>
<audio id="audio"> <source src="Music.mp3" type="audio/mpeg"> Your browser does not support this audio format. </audio>
<script type="text/javascript"> function toggleSound() { var audioElem = document.getElementById('audio'); if (audioElem.paused) audioElem.play(); else audioElem.pause(); } </script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment