Open In App

HTML DOM onprogress Event

The DOM onprogress event in HTML occurs when the browser is downloading the specified audio/video.

Events occur during the loading process of an audio/video: 



Supported Tags

Syntax: 



<element onprogress="myScript">
object.onprogress = function(){myScript};
object.addEventListener("progress", myScript);

Example: Using the addEventListener() method 




<!DOCTYPE html>
<html>
   
<head>
    <title>
        HTML DOM onprogress Event
    </title>
</head>
 
<body>
    <h1 style="color:green">
        GeeksforGeks
    </h1>
    <h2>
        HTML DOM onprogress Event
    </h2>
    <video controls id="vidID"
           width="320" height="240">
        <source src=
                type="video/mp4">
    </video>
   
    <script>
        document.getElementById(
            "vidID").addEventListener("progress", GFGfun);
        function GFGfun() {
            alert("Video progress");
        }
    </script>
</body>
 
</html>

Output: 

 

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


Article Tags :