Advertisement
Home Open Editor ❯

HTML onseeked Attribute

Example

<video onseeked="myFunction()">

Try this code ❯

Meaning

The seeked event run when the user is finished moving/skipping to a new position in the audio/video.


Standard Syntax

<element onseeked="script">


Applies to:

The onseeked attribute can be used on the following element:

Element Attribute
<audio> seeked
<video> seeked

Advertisement

Attribute Values

Value Description
script Specifies a script that run when the media is seeked.
Home Open Editor ❯
Advertisement