
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
HTML Navigator onLine Property
The HTML navigator onLine property returns a boolean value that defines whether the browser is online or offline.
Syntax
Following is the syntax −
navigator.onLine
Let us see an example of HTML navigator onLine property −
Example
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; text-align: center; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 20px; width: 330px; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } .show { font-size: 1.2rem; color: #fff; } </style> <body> <h1>HTML navigator onLine property Demo</h1> <button class="btn" onclick="display()">Check Browser Online/Offline Mode</button> <div class="show"></div> <script> function display() { var msg = document.querySelector(".show"); if (navigator.onLine) { msg.innerHTML = "Hey! You are online"; } else { msg.innerHTML = "Hey! You are offline"; } } </script> </body> </html>
Output
Click on “Check Browser Online/Offline Mode” button to whether the browser is in online or offline mode −
Now try to disconnect your network and then click again on “Check Browser Online/Offline Mode” button −
- Related Articles
- HTML Navigator language Property
- HTML Navigator appCodeName Property
- HTML Navigator appName Property
- HTML Navigator appVersion Property
- HTML Navigator cookieEnabled Property
- HTML Navigator geolocation Property
- HTML Navigator platform Property
- HTML Navigator product Property
- HTML Navigator userAgent Property
- HTML Navigator javaEnabled() Method
- Window Navigator in TypeScript
- Execute a script when the browser starts to work online in HTML?
- HTML KeyboardEvent which Property
- HTML returnValue Event Property
- HTML DOM tagName Property

Advertisements