HTMLMediaElement: ended property
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
TheHTMLMediaElement.ended property indicates whether the mediaelement has ended playback.
In this article
Value
A boolean value which istrue if the media contained in theelement has finished playing.
If the source of the media is aMediaStream, this value istrue if the value of the stream'sactive property isfalse.
Examples
js
const obj = document.createElement("video");console.log(obj.ended); // falseSpecifications
| Specification |
|---|
| HTML> # dom-media-ended-dev> |
Browser compatibility
See also
HTMLMediaElement: Interface used to define theHTMLMediaElement.endedpropertyMediaStreamMediaStream.active