The way that I understood this question is as follows: you want to use the function to preload audio files. The best way I can think to do this is to define them all individually. If you would like to Embed your audio clips into a webpage, here is an example:
<audio src="audioclip.mp3" controls autoplay preload loop>
<p>This web browser does not support mp3 format</p>
</audio>
Controls: this element states weather or not you would like the user to have play pause, etc. controls on the audio file.
Autoplay: this element states weather or not you would like the audio file to play automatically after the webpage is loaded. If you choose this option for your project, I recommend using the preload element as well (which I will explain later on) and not using the controls element (if of course that is what you want).
Preload: This is the element your question has been specifically looking for. If you include this element, the audio file will preload as the webpage is loading.
Loop: This element repeatedly plays the audio file until the user stops it (if controls is enabled)
the part where it says "This web browser does not support mp3 format" should only show up on the users screen if there browser is outdated and does not support mp3 format.
In order to disable an element, simply don't include it in the code.
Hope this helped!
UPDATE the element should be enough for what you are trying to do.