JavaScript navigator.onLine Property

You are Here:

JavaScript navigator.onLine Property

The navigator.onLine property returns whether the browser is in online or offline mode.

Note: This property is read-only.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <script> document.write("Browser online: "+navigator.onLine); </script> </body> </html>

Syntax

navigator.onLine

Return Value

ValueExplanation
trueIf the browser is online.
falseIf the browser is offline.

More Examples

Examples

HTML Online Editor
<!DOCTYPE html> <html> <body> <script> var txt = ""; txt += "<p>Browser Name: "+navigator.appName+"</p>"; txt += "<p>Browser CodeName: "+navigator.appCodeName+"</p>"; txt += "<p>Browser Version: "+navigator.appVersion+"</p>"; txt += "<p>Cookies Enabled: "+navigator.cookieEnabled+"</p>"; txt += "<p>Browser Language: "+navigator.language+"</p>"; txt += "<p>Browser Online: "+navigator.onLine+"</p>"; txt += "<p>Platform: "+navigator.platform+"</p>"; txt += "<p>Browser's Engine Name: "+navigator.product+"</p>"; txt += "<p>User-agent header: "+navigator.userAgent+"</p>"; txt += "<p>Java Enabled: "+navigator.javaEnabled()+"</p>"; document.write(txt); </script> </body> </html>

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author