I've got a web app that needs to play a handful of sounds. The app is intended primarily for mobile devices. As it stands I'm creating an <audio> element for each sound I need and triggering the play() method of each with javascript. I'd prefer to have all the sounds in one audio element, each being a different source, something along the line of:
<audio controls="controls" preload="auto" id="audioPlayer">
<source src="click1.ogg" type="audio/ogg" />
<source src="click2.ogg" type="audio/ogg" />
</audio>
and trigger each source by calling something like .play("click1.ogg").
I can't afford to change the source with javascript and wait for the new source to load; the sounds need to be loaded with the page.
Is there a solution similar to what I've written above or should I stick with different audio elements for different sounds?
As a secondary question, am I taking a performance hit by defining multiple audio elements?