<script type="text/javascript">
(function($) {
$(function(){
$("a.play").each(function() {
$(this).mouseover(function(){
var mp3file = $(this).attr('href');
}).mouseout(function() {
});
});
});
})(jQuery);
</script>
you can use the player that unomi suggested. works great
source
share