Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <button onclick="NeverPlay()">Play</button>
  2. <script>
  3. function NeverPlay(){
  4. var audio = document.createElement('audio');
  5. audio.style.display = "none";
  6. audio.src = Never.mp3;
  7. audio.autoplay = false;
  8. audio.loop = true;
  9. audio.onended = function(){
  10. audio.remove() //Remove when played.
  11. };
  12. document.body.appendChild(audio);
  13. }
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement