I have an HTML5 Audio element in my web application. At some point, I programmatically stop playback using this code:
audioElement.pause(); audioElement.currentTime = 0;
When sound plays, a notification appears on my Android device (using Google Chrome). I expect this notification to disappear as soon as I stop playback, but it is not.
How to delete a notification?
javascript html5 google-chrome html5-audio
Itsgreg
source share