Preloading Multiple Audio Tags in Internet Explorer 9
I had a unique problem. I have an app I’m working on where I needed to preload about 50 audio files for use during the page’s lifetime. If you’re up on your HTML5-fu, this is a simple task:
|
1 2 3 4 |
<audio id="myAudio" controls preload="auto"> <source src="/my-podcast.mp3" /> <source src="/my-podcast.ogg" /> </audio> |
In … Continue reading