Open In App

HTML DOM onplaying Event

The DOM onplaying event occurs when the audio/video is paused and playing after the buffer.

Supported Tags: 



Syntax: 

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

Example: Using the addEventListener() method 






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

Output: 

 

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


Article Tags :