Open In App

HTML | DOM Video Seeking Property

Last Updated : 16 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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.  

HTML




<!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: 

  • Before clicking the button: 

  • After clicking the button: 

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

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

 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads