Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Audio</title>
  5. </head>
  6. <body>
  7.  
  8. <script>
  9. function play(){
  10. var audio = document.getElementById("audio");
  11. audio.play();
  12. }
  13. </script>
  14.  
  15. <input type="button" value="PLAY" onclick="play()">
  16. <audio id="audio" src="so_gos.mp3" ></audio>
  17.  
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement