Brian Arnold created a fun sample drum machine simulator using HTML5 <audio>. PLAIN TEXT JAVASCRIPT: function playBeat() { if (isPlaying) { var nextBeat = 60000 / curTempo / 4; // Turn off all lights on the tracker's row $("#tracker li.pip").removeClass("active"); // Stop all audio …

