Open In App

HTML | DOM Video Seeking Property

The Video seeking property is used for returning if the user is currently seeking in the video
When the user moves or skips to a new position in the video, it is called seeking. 
The Video Seeking property is a read-only property.

Syntax:  



videoObject.seeking

Return Value: 
The Video seeking property returns a boolean true if the user is currently seeking, else it returns false.

Below program illustrates the Video seeking property. 



Example: Showing if the user is currently seeking in the video.  




<!DOCTYPE html>
<html>
 
<head>
    <title>
        Video seeking Property
    </title>
</head>
 
<body style="text-align:center">
 
    <h1 style="color:green">GeeksforGeeks</h1>
    <h2 style="font-family: Impact">
      Video seeking Property
    </h2>
    <br>
 
    <video id="Test_Video"
           width="360"
           height="240"
           controls onseeking="My_Video()"
           onseeked="myFunction()">
       
        <source src="samplevideo.mp4"
                type="video/mp4">
        <source src="movie.ogg"
                type="video/ogg">
    </video>
 
     
 
<p>Try seeking the video to know the state.
        <br><span id="Test_Span">
      </span></p>
 
 
 
    <p id="test"></p>
 
 
 
    <script>
        function My_Video() {
            var v = document.getElementById("Test_Video");
            document.getElementById("Test_Span").innerHTML =
              ("Seeking: " + v.seeking);
        }
    </script>
 
</body>
 
</html>

Output: 

Supported Browsers: The supported browser by HTML | DOM Video Seeking Property are listed below: 

 


Article Tags :