She
Posts: 0
Joined: Wed Oct 08, 2014 12:46 am

offline event in pageshow

Hi Team,

Im trying to detect if there's internet or no internet when the user opened the application. so i input this code in pageshow event:

var online = window.navigator.onLine;
if (!online) {
alert('Check your internet.');
};

but nothings happen. I already tried the OFFLINE/ONLINE Event to the app to show the alert but still no luck. Thank you in advance.

please help.

Thank you.

She
Posts: 0
Joined: Wed Oct 08, 2014 12:46 am

offline event in pageshow

Try to open your app without internet connection. you can see the alert message will not show. we already tried this to 10 android devices. but still no luck

Thank you Team

Alena Prykhodko
Posts: 0
Joined: Tue Apr 09, 2013 7:36 am

offline event in pageshow

Hi,

Please use offline/online events to detect status http://devcenter.appery.io/documentat...
Works for me.It fires when status changes.

She
Posts: 0
Joined: Wed Oct 08, 2014 12:46 am

offline event in pageshow

Have you tried this?

  1. close the app(totally closed)

  2. off you internet connection

  3. open the app again.

  4. its not working here.

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

offline event in pageshow

Hello,

Events online/offline work when Internet connection status changes. If you want just to know the current Internet connection status - execute any REST service. If it will fire the "success" event - connection is active, if "error" - unactive;

Taiye
Posts: 0
Joined: Wed Sep 23, 2015 12:13 am

offline event in pageshow

Hello guys,

For some reasons, the online/offline events are not firing on my android 4.2.2 device (nothing fancy, just printing a simple alert from a javascript handler when i disable/enable my connectivity). however, the same test works perfectly on ios9 for online/offline events.

I am only pointing this out for information purposes as I've been able to overcome the challenge using the tip described here...

http://www.raymondcamden.com/2015/01/13/phonegap-onlineoffline-tip-2/

Thanks
Taiye

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

offline event in pageshow

Thank you for update! Glad it works now!

Return to “Issues”