Trying to add a stop function to the Audio object in javascript like this
//Give the Audio object a stop function
Audio.prototype.stop = function()
{
this.pause();
this.currentTime = 0.0;
}
can be used like this
var aud = new Audio();
aud.src = 'background.ogg';
aud.play();
aud.stop();
Works in Google Chrome, but not in firefox. any ideas ?