How To Detect The Internet Connection Status Is Online or Offline? - letsbug

    Hey everyone in this video I am making a simple web page with a feature which is very handy for all of us the developers. We are making a programme that will detect if the device in which this page is open it will show a message to the user that if his/her device is connected to the internet or not.

    It is fairly simple we have just created a title element and a h3 title tag as a container which will store the message. Main work is in JS where first we are setting a const variable con as the container where we will show message. And we set a 1 sec interval which calls a function checkStatus and this function does all of our work.

    In checkStaus function we are just doing a simple if check that if navigator object whose property value depends on device has a property Online as true or false. We check that and if true we display message Online else Offline. That's all it has. And you want to know all the navigator objects property then you can visit here.

Code:


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,
    initial-scale=1.0">
    <title>Network Status</title>
</head>
<body>
    <h1>Netwrok Status</h1>
    <h3 id="section"></h3>
    <script>
        const con = document.getElementById("section");
        window.setInterval(checkStaus, 1000)
        function checkStaus(){
            if(navigator.onLine){
                con.innerHTML = "Online | Connected to Internet"
            }else{
                con.innerHTML = "Offline | Please Connect to Internet"
            }
        }
    </script>
</body>
</html>


Network Status - Online | Offline
Output



Comments

Categories

Big Data Analytics Binary Search Binary Search Tree Binary To Decimal binary tree Breadth First Search Bubble sort C Programming c++ Chemical Reaction and equation class 10 class 10th Class 9 Climate Complex Numbers computer network counting sort CSS Cyber Offenses Cyber Security Cyberstalking Data Science Data Structures Decimal To Binary Development diamond pattern Digital Marketing dust of snow Economics Economics Lesson 4 Email Validation English fire and ice Food Security in India Footprints Without feet Forest And Wildlife Resources game Geography Geography lesson 6 glassmorphism Glossary Graph HackerRank Solution hindi HTML image previewer India-Size And Location Insertion Sort Internet Network Status Interview Questions Introduction to cyber crime and cyber security IT javascript tricks json to CSV converter lesson 2 lesson 1 lesson 2 Lesson 3 Lesson 6 lesson 7 Life lines of National Economy life processes Linear Search Linked List lowest common ancestor Machine Learning MCQs median in array Merge sort min and max of two numbers Moment Money and Credit My Childhood Natural Vegetation and Wildlife NCERT Network connectivity devices Network Models Network Security No Men Are foreign Node.js operator overloading P5.js PHP Physical features of India Population Prime Numbers python Quick sort R language Rain on the roof Regular Expression Resources and development reversing array saakhi science Searching Algorithm Selection sort Social Media Marketing social science Software Engineering Software Testing Sorting Algorithm Stacks staircase pattern System Concepts Text Recognition The last Leaf time converter Time Passed From A Date Todo List App Tree Trending Technologies Understanding Economic Development username and password video player Visualization water resources Wired And Wireless LAN साखी
Show more

Popular Posts

Big Data MCQs(multiple choice questions) with answers - letsbug

Digital Marketing MCQ(Multiple Choice Questions) with Answers | part 1 | letsbug

Software Engineering MCQs questions with answers - letsbug