언어 설정

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!

 

 

답변 바로가기

Responses

1 댓글
Mark as answer
Armaan-Ul- Islam

Use navigator.onLine

var checkCon = navigator.onLine;

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