Skip to content

Instantly share code, notes, and snippets.

@b1naryth1ef
Created June 29, 2011 03:40
Show Gist options
  • Save b1naryth1ef/1052988 to your computer and use it in GitHub Desktop.
Save b1naryth1ef/1052988 to your computer and use it in GitHub Desktop.
NyanCat.html
<a href="javascript:play_single_sound();"></a>
<audio id="audiotag1" src="<?php bloginfo('template_directory');?>/etc/nyan/Nyan.mp3" preload="auto">
<script type="text/javascript">
function play_single_sound() {
document.getElementById('audiotag1').play();
}
function stop_single_sound() {
document.getElementById('audiotag1').pause();
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment