Languages

Menu
Sites
Language
popup in wearable web app

 

I'm trying to add a popup or alert window to my wearable app to notify users who are refreshing page, there  is no internet connection.

 

What is the best way to achive this?

is there a sample code available?

 

thanks!

 

 

View Selected Answer

Responses

1 Replies
Mark as answer
Armaan-Ul- Islam

Use navigator.onLine

var checkCon = navigator.onLine;

if(!checkCon){
   alert("Internet Connection is not available");
}