added IE8 navigation sound when clicking on links

This commit is contained in:
James Shiffer 2020-06-26 22:24:59 -07:00
commit 3c82258ce6
2 changed files with 13 additions and 0 deletions

BIN
assets/click.wav Normal file

Binary file not shown.

13
js/click.js Normal file
View File

@ -0,0 +1,13 @@
var links = document.querySelectorAll("a");
links.forEach(function (link) {
link.addEventListener("click", function () {
var audio = document.createElement("audio");
audio.style.display = "none";
audio.src = "assets/click.wav";
audio.autoplay = true;
audio.onended = function() {
audio.remove();
};
document.body.appendChild(audio);
});
});