How to assign an identifier to each key and use html5 <audio> ? Then using jQuery, change the src attribute of the sound tag?
$('#a').hover(function(){ $('#oggfile').attr("src","a.ogg"); $('#mpegfile').attr("src","a.mp3"); }); $('#c').hover(function(){ $('#oggfile').attr("src","a.ogg"); $('#mpegfile').attr("src","a.mp3"); }); $('#c').hover(function(){ $('#oggfile').attr("src","c.ogg"); $('#mpegfile').attr("src","c.mp3"); });
http://jsfiddle.net/wPGSv/
user1537415
source share