This simple code changes sounds in firefox, IE, safari, and chrome but will not switch in Opera. Any thoughts?
<div id="playlist"style="position: absolute; z-index:10001; top: 0px; width: 100%; height: 100%;">
<button id="one" onclick="song1();">Mello</button>
<button id="two" onclick="song2();">Its Time</button>
<button id="three" onclick="song3();">Its on now</button>
<div id="hideme" style="width: 392px">
<audio id ="audio" controls loop>
<source id="oggSource" src="sounds/Starset.ogg" type="audio/ogg">
<source id="mp3Source" src="sounds/Starset.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</div>