Baseline Widely available
The ended
event of the AudioScheduledSourceNode
interface is fired when the source node has stopped playing.
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.
This event is not cancelable and does not bubble.
SyntaxUse the event name in methods like addEventListener()
, or set an event handler property.
addEventListener("ended", (event) => { })
onended = (event) => { }
Event type
A generic Event
.
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 onended
property:
node.onended = () => {
document.getElementById("startButton").disabled = false;
};
For an example of the ended event in use, see our audio-buffer example on GitHub.
Specifications Browser compatibility See alsoHTMLAudioElement
HTMLVideoElement
<audio>
<video>
ended
eventended
eventRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3