http://unsatisfiedpoets.net/experiments/Raindrop.htm
heres the code. easy as pie.
Code: Select all
<audio id="audio1" src="biz.wav" >
</audio>
<audio id="audio2" src="biz2.wav" >
</audio>
<audio id="audio3" src="biz3.wav" >
</audio>
<script>
function Soundx(soundobj) {
var thissound=document.getElementById(soundobj);
thissound.play();
}
</script>
<form>
<input type="button" value="Play Sound" onMouseover="Soundx('audio1')">
</form>
<a href="#" onMouseover="Soundx('audio1')"> sound </a><br>
<a href="#" onMouseover="Soundx('audio2')"> sound 2</a><br>
<a href="#" onMouseover="Soundx('audio3')"> sound 3</a><br>I know I claimed to invent mouse over sound last year, but this does Not use the sound manager library. only HTML5 and a teency weency javascript.
sorry for nerding out .