Created
January 15, 2018 04:18
-
-
Save FinalDestiny/ec91a4caa3dc315e84ca022626988690 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
const ClickSound = new Audio("/uploads/b2.m4a"); | |
var x = document.getElementsByClassName("click-button"); | |
var i; | |
for (i = 0; i < x.length; i++) { | |
x[i].addEventListener("click", e => ClickSound.play()); | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment