Z31o_0
5/31/2019 - 4:45 AM

Check browser is connect internet

Function to check browser is connect internet

/*
 * This function be call when user connect or disconnecet with internet
 */
function updateStatus() {
	// Do something in there
} 

/*
 * Code for user is connecting with internet
 */
if (navigator.onLine) {
	// Do something in there
}

// Usage
window.addEventListener('online', updateStatus);
window.addEventListener('offline', updateStatus);