I have multiple audio files that I want to stream based on the user selects. How do I do that? This is what I have so far and it doesn\'t seem to work.
*UPDATE: Mad
If you are storing metadata in a tag use data attributes eg.
Item1
Now use the attribute to get the name of the song
var audio = document.getElementById('audio'); audio.src='audio/ogg/' + document.getElementById('song1').getAttribute('data-value'); audio.load();