Created
June 29, 2011 03:40
-
-
Save b1naryth1ef/1052988 to your computer and use it in GitHub Desktop.
NyanCat.html
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
<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