I am currently working on an HTML5 project.
There is an issue on playing same audio file multiple times in the same page in Andr
This works for me:
var movie_audio = document.getElementById('movie_audio'); movie_audio.addEventListener('ended', function(){ movie_audio.load(); });