jeresig (owner)

Revisions

gist: 164163 Download_button fork
public
Public Clone URL: git://gist.github.com/164163.git
Embed All Files: show embed
JavaScript #
1
2
3
4
5
6
7
8
9
10
// 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");
});