जब वेब ब्राउज़र ऑनलाइन काम करना शुरू करता है, ऑनलाइन विशेषता ट्रिगर। ऑनलाइन . को लागू करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं विशेषता -
उदाहरण
<!DOCTYPE html> <html> <body ononline = "onlineFunc()" onoffline = "offlineFunc()"> <script> function onlineFunc() { alert ("Working online!"); } function offlineFunc() { alert ("Workinf offline!"); } </script> <p>Got o the web browser menu bar and click the File menu. Select "Work Offline" and toggle between online and offline.</p> </body> </html>