Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question

1 Answer

up vote 1 down vote accepted

Creating an element with new Audio creates an element whose prototype is HTMLAudioElement.prototype. Per spec this should be the same object as Audio.prototype, but I believe Firefox doesn't implement that part of WebIDL yet.

In any case, setting your stuff on HTMLAudioElement.prototype should work in both browsers, I would think.

share|improve this answer
yeah, that works in both chrome and firefox. Thanks!! – Silver Moon Dec 31 '12 at 12:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.