Horje

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




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