How do you detect when a HTML5 <video> element has finished playing? I found a spec mentioning an ended event, but I don't really know how to interact with it.
Thanks!
|
How do you detect when a HTML5 Thanks! |
|||
|
|
|
Have a look at this post at the Opera Dev site under the "I want to roll my own controls" section. This is the pertinent section:
then you can use:
EDIT:
In response to the comment, This event will work on all HTML5 compatible browsers. HTH EDIT2: |
|||||||||||
|
|
You can add an event listener with 'ended' as first param Like this :
|
||||
|
|
Very useful documentation with test page from Apple: http://developer.apple.com/library/safari/#samplecode/HTML5VideoEventFlow/Listings/events_js.html#//apple_ref/doc/uid/DTS40010085-events_js-DontLinkElementID_5 All you wanted to know on HTML5 video events! |
|||
|
|
|
The tag <video> is a media content that have the following attributes.
|
|||||
|
|
JQUERY
HTML
Event types HTML Audio and Video DOM Reference |
||||
|
|
|
What about if the video is not in the DOM?
|
||||
|
|