I\'ve got this jquery code and html to work OK for an English language training site.
$(document).ready(function() { $(\"p\").hover( function() {
var myAudio = new Audio('someSound.ogg'); myAudio.addEventListener('ended', function() { this.currentTime = 0; this.play(); }, false); myAudio.play();
This Worked for jquery audio.