Open In App

HTML | DOM Video preload Property

The Video preload property is used for setting or returning the value of the preload attribute of a video. The preload attribute is used to specify the way the author thinks the video should be loaded when the page loads. 
The video preload attribute allows the author to portray to the browser about the way the user experience of a website should be implemented.
Syntax: 
 

videoObject.preload
videoObject.preload = "auto|metadata|none"

Property Values: 
 



Return Value :  It returns a  string value, that represents what data should be preloaded (if any). Possible return values are “auto”, “metadata”, or “none”. See “Property Values” for what the values mean

Below program illustrates the Video Preload property. 
Example-1: Return the video preload property. 
 






<!DOCTYPE html>
<html>
 
<head>
    <title>
        Video Preload Property
    </title>
</head>
 
<body style="text-align:center">
 
    <h1 style="color:green">
      GeeksforGeeks
    </h1>
    <h2 style="font-family: Impact">
      Video Preload 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>To return the value of the preload attribute,
      double click the "Return Preload Attribute" button.</p>
 
 
 
    <button ondblclick="My_Video()"
            type="button">
      Return Preload Attribute
    </button>
 
    <p id="test"></p>
 
 
 
    <script>
        function My_Video() {
            var v = document.getElementById(
              "Test_Video").preload;
            document.getElementById("test").innerHTML = v;
        }
    </script>
 
</body>
 
</html>

Output: 
 

Example-2: Set the video preload property. 
 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        Video Preload Property
    </title>
</head>
 
<body style="text-align:center">
 
    <h1 style="color:green">
      GeeksforGeeks
    </h1>
    <h2 style="font-family: Impact">
      Video Preload 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>To set the value of the preload attribute,
      double click the "Set Preload Attribute" button.</p>
 
 
 
    <button ondblclick="My_Video()"
            type="button">
      Set Preload Attribute
    </button>
 
    <p id="test"></p>
 
 
 
    <script>
        function My_Video() {
            var v = document.getElementById(
              "Test_Video").preload="auto";
            document.getElementById("test").innerHTML = v;
        }
    </script>
 
</body>
 
</html>

Output: 
 

 

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

 


Article Tags :