I am facing very serious issue at that time which is that i have multiple pages and each page have five sound . Now when i play all the sound of each page then after constantly playing sounds on page 8 or seven even if i play again and again sounds of first page next page sounds will not work and my all application will be in state of "not responding" . I do not see any crash report or error that what thing cause that behaviour. Any help will be appricited.
Here is my code:
var audioElement = document.createElement('audio');
function audio(audio_name) {
Disable();
audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'audio/' + audio_name + '.ogg');
audioElement.load();
audioElement.play();
}
function Disable() {
audioElement.duration=0;
audioElement.pause();
}
From this link you can also have a look that before some sounds were working and some others not for this i choose that solution
https://developer.tizen.org/forums/web-application-development/sounds-are-not-being-played