Open In App

HTML | DOM Video paused Property

The Video paused property in HTML DOM is used to return whether the video is paused or not. It is the read-only property.

Syntax:



videoObject.paused

Return: The video paused property returns a boolean value true if the video is paused else return false.
Below program illustrates the Video paused property in HTML DOM:

Example:




<!DOCTYPE html>
<html>
  
<head>     
    <title>
        Video paused Property
    </title>
</head>
  
<body style="text-align:center;">
  
    <h1 style="color:green;">
        GeeksforGeeks
    </h1
      
    <h2 style="font-family: Impact;">
        Video paused Property
    </h2><br>
      
    <video id="Test_Video" width="360" height="240" controls>
        <source src="samplevideo.mp4" type="video/mp4">
        <source src="movie.ogg" type="video/ogg">
    </video>
      
    <p>
        For knowing whether the video is paused or not,
        double click the "Return Pause State" button.
    </p>
      
    <button ondblclick="set()" type="button">
        Return Pause State
    </button>
      
    <p id="test"></p>
      
    <script>
        function set() {
            var v = document.getElementById("Test_Video").paused;
            document.getElementById("test").innerHTML = v;
        
    </script>
</body>
  
</html>                                                         

Output:



Supported Browsers: The browser supported by Video paused Property are listed below:


Article Tags :