+ 4
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<audio id="audio" src="http://www.soundjay.com/button/beep-07.wav" autostart="false" ></audio>
<button><a onclick="PlaySound()"> Play</a></button>
<script>
function PlaySound() {
var sound = document.getElementById("audio");
sound.play()
}
</script>
</body>
</html>