Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

how to know connected internet in js

// example code
let Connected = window.navigator.onLine;
if (Connected) {
  alert('Connection available');
} else {
  alert('Connection not available');
}
Comment

how to check if connected to internet js

function getStatus() {
    const statusDisplay = document.getElementById("status");
    statusDisplay.textContent = navigator.onLine ? "Online" : "OFFline";
    if (statusDisplay.textContent === "Online") {
      console.log('Online');
    } else if (statusDisplay.textContent === "OFFline"){
      console.log('Offline');
    }
}
setInterval(getStatus, 2000);
Comment

PREVIOUS NEXT
Code Example
Javascript :: select random from an array 
Javascript :: flutter text with icon 
Javascript :: File is a CommonJS; it may be converted to an ES6 module 
Javascript :: get full date in javascript 
Javascript :: react native regenerate android and ios folders 
Javascript :: if button is pressed js 
Javascript :: javascript get first character of string 
Javascript :: hide and show in angular 8 
Javascript :: js date after 1 year 
Javascript :: longest word javascript 
Javascript :: push element to array to first place js 
Javascript :: package json proxy 
Javascript :: await fetch in react 
Javascript :: how to get relative postiion mouse click on element 
Javascript :: get nearby store by latitude and longitude from my latitude and long node js 
Javascript :: gulp delete files 
Javascript :: regex ranges 
Javascript :: jQuery UI Sortable, then write order into a database 
Javascript :: system collections generic list to javascript array 
Javascript :: convert number to string date js 
Javascript :: nodemon package.json start 
Javascript :: load a page with ajax 
Javascript :: usedispatch 
Javascript :: iterate over map key value javascript 
Javascript :: scrollto jquery 
Javascript :: javascript paragraph count 
Javascript :: js every x seconds 
Javascript :: ascending and descending val in array using js 
Javascript :: create an array of size n in javascript 
Javascript :: use regex to get urls from string 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =