i'm developping a game with HTML5 i'm trying to add sound , it works when i test it in the browser but it's a mobile game so when i test it in the emulator via PhoneGap the sound is not working .
here's my code : Html:
<audio id="buttonover">
<source src="sounds/cartoon008.ogg" ></source>
</audio>
JavaScript :
sndCollide = document.getElementById('buttonover');
sndCollide.play();