Open In App

HTML DOM onoffline Event

The DOM onoffline event occurs on offline work of the browser. The onoffline event is a conflict with the ononline event.

Note: navigator.onLine property is used to check the mode of the browser.



Supported Tags:

Syntax: 



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

Example: Using the addEventListener() method 




<!DOCTYPE html>
<html>
   
<head>
    <title>
        HTML DOM onoffline Event
    </title>
</head>
 
<body>
    <h1>
        GeeksforGeeks
    </h1>
    <h2>
        HTML DOM onoffline Event
    </h2>
   
    <script>
        window.addEventListener("online", onlineGFG);
        window.addEventListener("offline", offlineGFG);
        function onlineGFG() {
            alert("Online");
        }
        function offlineGFG() {
            alert("Offline");
        }
    </script>
</body>
   
</html>

Output:

 

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

Article Tags :