onended Event
Example
Execute a JavaScript when an audio has ended:
<audio onended="myFunction()">
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The onended event occurs when the audio/video has reached the end.
This event is useful for messages like "thanks for listening",
"thanks for watching", etc.
Browser Support
The numbers in the table specify the first browser version that fully supports the event.
Event | |||||
---|---|---|---|---|---|
onended | Yes | 9.0 | Yes | Yes | Yes |
Syntax
In JavaScript, using the addEventListener() method:
object.addEventListener("ended", myScript);
Try it Yourself »
Note: The addEventListener() method is not supported in Internet Explorer 8 and earlier versions.
Technical Details
Bubbles: | No |
---|---|
Cancelable: | No |
Event type: | Event |
Supported HTML tags: | <audio> and <video> |
DOM Version: | Level 3 Events |
More Examples
Example
Execute a JavaScript when a video has ended:
<video onended="myFunction()">
Try it Yourself »
❮ Event Object