MENU
Playing Audio
RESETRUNFULL
<!DOCTYPE html><html><head></head><body>
<script>
var a = new Audio("Alarm03.wav");
a.loop = true;
document.onclick=()=>{a.play();}
document.ondblclick=()=>{a.pause();}
</script></body></html>