Small Module to pre-load and play audio using HTML audio tag, forked from https://github.com/MauriceButler/simple-audio
Addresses the Chrome for Andriod issue 178297
<audio id="foo">
<source src="foo.mp3"></source>
<source src="foo.wav"></source>
<source src="foo.ogg"></source>
</audio>
var audio = require('simple-audio');
audio.setVolume('foo', 0.5);
audio.playSound('foo');
// ... if additional audio elements are added later...
audio.captureAudioElements();