...and it is not working. I have looked through the various other questions on this website which ask the same thing. None of them seem to fix the problem and often create new problems. I am fairly new to HTML/JS, so the solution could be incredibly simple.
<script language="javascript">
function No(){
var audioNo = new Audio();
No.src = "No.mp3";
document.getElementById(No);
audioNo.Play();
}
</script>
</head>
<body>
<p id="No" onclick="No()" type="text"> No </p>
</body>