Open In App

HTML DOM oncanplaythrough Event

The HTML DOM oncanplaythrough event occurs when the specified media is buffered and the browser estimates it can play through without having to stop.

The order of events occurs during the loading process of an audio/video: 



Supported Tags:

Syntax:



In HTML: 

<element oncanplaythrough="myScript">

In JavaScript: 

object.oncanplaythrough = function(){myScript};

In JavaScript, using the addEventListener() method: 

object.addEventListener("canplaythrough", myScript);

Example: Using HTML 




<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
        <h2>
              HTML DOM oncanplaythrough event
          </h2>
        <video controls oncanplaythrough="myFunction()">
            <source src=
                    type="video/mp4">
        </video>
        <script>
            function myFunction() {
                alert("Can play through video without stopping");
            }
        </script>
    </center>
</body>
</html>

Output: 

 

Example: Using JavaScript 




<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
        <h2>
              HTML DOM oncanplaythrough event
          </h2>
        <video controls id="myVideo">
            <source src=
                    type="video/mp4">
        </video>
        <script>
            document.getElementById(
                "myVideo").oncanplaythrough = function () {
                    myFunction()
                };
            function myFunction() {
                alert("Can play through video without stopping");
            }
        </script>
    </center>
</body>
 
</html>

Output: 

 

Example: Using the addEventListener() method: 




<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
        <h2>
              HTML DOM oncanplaythrough event
          </h2>
        <video controls id="myVideo">
            <source src=
                    type="video/mp4">
        </video>
        <script>
            document.getElementById(
                "myVideo").addEventListener(
                "canplaythrough", myFunction);
            function myFunction() {
                alert("Can start playing video");
            }
        </script>
    </center>
</body>
 
</html>

Output: 

 

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


Article Tags :