Guest User

Untitled

a guest
Nov 23rd, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.30 KB | None | 0 0
  1. <audio controls id="linkAudio">
  2.     <source src="serverPath" type="audio/mp3">
  3.     Your browser does not support the audio element.
  4. </audio>
  5.  
  6. <script>
  7.     document.getElementById("link_id").addEventListener("click", function () {
  8.         document.getElementById("linkAudio").play();
  9.     });
  10. </script>
Advertisement
Add Comment
Please, Sign In to add comment