My code is basically this
<audio controls preload="none" src="linktofile.mp3" />
It works great in Safari 5 and Chrome 8 except that Chrome completely ignores the preload attribute and starts loading (not playing) the file after page load. Which consumes a huge amount of bandwidth if the page is full of audio tags.
Is there a way to make Chrome behave like Safari 5 (ie. the right way) and only load a file when the user clicks on the play button ?