I wrote a bit of JavaScript with jQuery that loads a sound file with the HTML 5 <audio> tag and on a mouse click starts playing a new instance of that sound file (so that it can be played multiple times in parallel/overlay).
HTML:
<audio id="audiotemplate" src="audio/myfile.ogg"></audio>
JavaScript:
mybutton.click(function() {
$('#audiotemplate').clone()[0].play();
});
This works as intended, but creates a memory leak that causes FF to eat up the system RAM and Chromium to show its "Ah, Snap" page if you click the button too many times.
EDIT: For a quick test better use $(document).keypress instead of mybutton.click and keep a button pressed.
How to clean up the <audio> element after the sound file has finished playing?
NOTE: I do not insert the cloned element into the the page.
NOTE 2: The leak also happens if you click, wait until the sound ends, klick again ...
(I am happy with a solution, but also appreciate an explanation why the leak happens at all.)