Skip to content

Instantly share code, notes, and snippets.

@antoniocampos
Last active June 1, 2017 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antoniocampos/d7daaa40c3960b72dbf275525a91f83f to your computer and use it in GitHub Desktop.
Save antoniocampos/d7daaa40c3960b72dbf275525a91f83f to your computer and use it in GitHub Desktop.
Javascript PlaySound
<!DOCTYPE html>
<html>
<head>
<title>Javascript Play Sound</title>
<script src="playsound.js"></script>
</head>
<body>
<a href="#" onclick="PlaySound()">Play</a>
</body>
</html>
function PlaySound() {
var sound = new Audio("alarm.wav");
sound.play();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment