<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript Play Sound on Click Event of DOM Element</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>

<button id="bt" type="button"
  onclick="javascript:PlaySound('Wat_Metta_Buddha_Qualities.mp3');">
  Click Me to Play Sound
</button>

<script type="text/javascript">

function PlaySound(path) {
  var audioElement = document.createElement('audio');
  audioElement.setAttribute('src', path);
  audioElement.play();
}

</script>

</body>
</html>