Created
August 7, 2009 20:41
-
-
Save jeresig/164163 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
// Slightly rewritten code from here: | |
// http://blog.mozilla.com/webdev/2009/08/06/html5-audio-soundboard/ | |
$("audio").removeAttr("controls").each(function(i, audio) { | |
$('<button>') | |
.text( $(this).attr("title") ) | |
.click(function() { | |
audio.play(); | |
)) | |
.appendTo("#doc"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's a small failure in line #8. You have to replace the first brace with a curly one :)