Web/API/AudioScheduledSourceNode/ended event

From Get docs

The ended event of the AudioScheduledSourceNode interface is fired when the source node has stopped playing.

Bubbles No
Cancelable No
Interface Event
Event handler property AudioScheduledSourceNode.onended

Usage notes

This event occurs when a AudioScheduledSourceNode has stopped playing, either because it's reached a predetermined stop time, the full duration of the audio has been performed, or because the entire buffer has been played.

Examples

In this simple example, an event listener for the ended event is set up to enable a "Start" button in the user interface when the node stops playing:

node.addEventListener('ended', () => {
  document.getElementById("startButton").disabled = false;
})

You can also set up the event handler using the AudioScheduledSourceNode.onended property:

node.onended = function() {
  document.getElementById("startButton").disabled = false;
}

For an example of the ended event in use, see our [[../../../../../../../mdn.github.io/webaudio-examples/audio-buffer/index|audio-buffer example on GitHub]].

Specifications

Specification Status Comment
Web Audio APIThe definition of 'onended' in that specification. Working Draft Initial specification.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
ended event Chrome

Full support 14

Edge

Full support ≤79

Firefox

Full support 53

IE

No support No

Opera

Full support 15

Safari

Full support 14

WebView Android

Full support Yes

Chrome Android

Full support 18

Firefox Android

Full support 25

Opera Android

Full support 14

Safari iOS

Full support 14

Samsung Internet Android

Full support 1.0

Legend

Full support  
Full support
No support  
No support


Related events

See also