Horje
HTML onseeked Event Attribute
The onseeked attribute defines a script to run when the user is finished moving/skipping to a new position in the audio/video. Tip: Use the currentTime property of the Audio/Video Object to get the current playback position.

Example of HTML onseeked Event Attribute

When the user is finished moving/skipping to a new position in the video, alert some text.

index.html
Example: HTML
 <script>
function myFunction() { alert('Seek operation completed');
}</script>
<video onseeked="myFunction()">
 

Output should be:

Example of HTML onseeked Event Attribute




html event attributes

Type:
Develop
Category:
Web Tutorial
Sub Category:
HTML Media Events Attribute
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference