Open In App

HTML | DOM onseeking Event

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

Syntax: 
 



<element onseeking="Script">
object.onseeking = function(){Script};
object.addEventListener("seeking", Script);

Example: Using the addEventListener() method 
 




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

Output: 
Before: 
 



After: 
 

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

 


Article Tags :