Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

react check internet connection

// Trigger sth, when Connection comes back | Connection gets lost
function poopityScoop(){
	window.ononline = (event) => {
    	console.log("Back Online")
	};
  
	window.onoffline = (event) => {
   		console.log("Connection Lost")
	};
}
Source by www.geekstutorialpoint.com #
 
PREVIOUS NEXT
Tagged: #react #check #internet #connection
ADD COMMENT
Topic
Name
2+3 =