onended event

Occurs when the end of playback is reached.

 

Syntax

HTML Attribute <element onended = "handler(event)">
Event Property object.onended = handler;
attachEvent Method object.attachEvent("onended", handler)
addEventListener Method object.addEventListener("ended", handler, useCapture)

 

Event information

Synchronous No
Bubbles No
Cancelable No

 

Event handler parameters

  • pEvtObj [in]
    Type: Event

Standards information

Remarks

This is the last event raised by media playback.

To invoke this event, do one of the following:

  • Play the media to its full duration.
  • Set currentTime past the end of the media.