Open In App

HTML | DOM onseeked Event

Improve
Improve
Like Article
Like
Save
Share
Report

The onseeked event in HTML DOM occurs when the user finishes the skips the media to a new position. The onseeked event and onseeking event are just opposite to each other. To get the current position of media use currentTime
Supported Tags

  • <audio> 
  • <video>

Syntax: 
 

  • In HTML: 
     
<element onseeked="Script">
  • In JavaScript: 
     
object.onseeked = function(){Script};
  • In JavaScript, using the addEventListener() method: 
     
object.addEventListener("seeked", Script);

Example: Using the addEventListener() method. 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM onseeked Event
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
        <h2>HTML DOM onseeked Event</h2>
 
        <video controls id="videoID">
            <source src=
                    type="video/mp4">
        </video>
    </center>
    <script>
        document.getElementById(
          "videoID").addEventListener("seeked", GFGfun);
 
        function GFGfun() {
            alert("Media Skipped");
        }
    </script>
 
</body>
 
</html>


Output: 
Before: 
 

After: 
 

Supported Browsers: The browsers supported by HTML DOM onseeked Event are listed below: 
 

  • Google Chrome
  • Internet Explorer 9+
  • Firefox
  • Apple Safari
  • Opera

 



Last Updated : 20 Jul, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads