How to detect whether the browser is online or offline using Javascript
Make money for being or staying online/internet.

You will get a $50 starting gift when you join using this code: Exode4LKrbujm1z and link:: GET THE OFFER NOW!!

The window.navigator object contains information about the visitor's browser. Through this object as stated in the article title, we can access the onLine property and tell if the visitor's device is online or offline.

I created a very simple video to guide you on this topic. Watch if interested.

First Tutorial Example
copy

The onLine property of the Navigator object returns a Boolean value that specifies whether the browser is in online or offline mode:

copy

let resDiv = document.getElementById('res');
let myBtn = document.getElementById('resBtn');

myBtn.addEventListener('click',function(){
resDiv.innerHTML = "Connection:: "+navigator.onLine;
});

In this second example, we go further and see how we can utilize this javascript object and property.

You can decide to redirect users to an offline page when they lose their internet connection while navigating your site.

As you have seen in the tutorial we created a new file called offline.html where the user is redirected when he/she has no active connection.

In the example below, we check and see if there is no connection using this line code in an "if statement":: navigator.onLine == false

The window.location.href is the line where you put the page/file you want the user to be taken to. Watch tutorial

Second Tutorial Example
copy

document.addEventListener('DOMContentLoaded',function(){

function onlineDetector(){

setTimeout(function(){
	if(navigator.onLine == false){
	window.location.href="offline.html";
	}
},1000);

}

onlineDetector();

setInterval(onlineDetector,1000);
	
});
Offline Page Code

Place this code on the offline.html page. It's on this page where you check whether the navigator.onLine == true and then take back the users to the page they were on.

copy

document.addEventListener('DOMContentLoaded',function(){

function onlineDetector(){

setTimeout(function(){
	if(navigator.onLine == true){
	window.location.href="javascript:history.go(-1)";
	}
},1000);

}

onlineDetector();

setInterval(onlineDetector,1000);

});

The way you can truck the previous page that the user was on is to use this history object and the go()property.

Syntax
copy
	
//Put this inside the: href="...." attribute

javascript:history.go(-1)";

I will always put out free content on my YouTube Channel, but showing your support, subscribing to it, pushes me and gives me motivation, not because of the money, but because it feels like people really appreciate what I do. SUBSCRIBE TO:: Oston Code Cypher

Save up to 80% with this Domain & Shared Hosting package deal! 80% OFF - GET OFFER NOW

Related Post(s)

» Adding JavaScript to OPEN and CLOSE the Overlay Effect

» How to create Custom Social Media Share Buttons Using JavaScript

» HTML Entities Code Alphabet Discovery Using JavaScript

» How to Install Node.js® and NPM on Windows

» How to recreate Facebook's console warning

collections_bookmark Category :: Javascript
date_range Published :: 4 years ago At: 04:03 PM
event_note Detailed Date :: Nov 26th, 2019
person Writer :: Code
  • RECENT POSTS
3 weeks ago

Mr.

(sel


3 weeks ago

Mr.

(sel


3 weeks ago

Mr.

555


3 weeks ago

Mr.

555


3 weeks ago

Mr.

5550


3 weeks ago

Mr.

5550


3 weeks ago

Mr.

555


3 weeks ago

Mr.

555


Subscribe
  • ADVERTISEMENT

YOU MAY LIKE THESE POSTS

share