Open In App

HTML | DOM onsuspend Event

The onsuspend event in HTML DOM occurs when the browser not getting media data. This event occurs when the media loading is suspended. This can happen when the download has completed, or it has been paused because of some interruption.
Events that occurs when some kind of disturbance comes in the loading process: 
 

Supported tags:



Syntax: 
 

<element onsuspend="Script">
object.onsuspend = function(){Script};
object.addEventListener("suspend", Script);

Supported Tags: 
 



Example: Using the addEventListener() method 
 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM onseeked Event
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>
        <h2>HTML DOM onseeked Event</h2>
 
        <video controls id="videoID">
            <source src=
                    type="video/mp4">
        </video>
    </center>
    <script>
        document.getElementById(
            "videoID").addEventListener("suspend", GFGfun);
 
        function GFGfun() {
            alert(
                "Media loading suspended");
        }
    </script>
 
</body>
 
</html>

Output: 
Before: 
 

After: 
 

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

 


Article Tags :