DEV Community

Server Broad
Server Broad

Posted on

Answer: Checking internet connection in PhoneGap app

try this one.

install this cordova plugin here.

https://github.com/apache/cordova-plugin-network-information

and add this code into js file

document.addEventListener("deviceready", onDeviceReady, false);
// device APIs are available
//

function onDeviceReady() {
    isOnline();
}

function isOnline() {
    var networkState = navigator.connection.type;
    var states = {};
    states[Connection.UNKNOWN] = 'Unknown connection';
    states[Connection.ETHERNET] = 'Ethernet connection';
    states[Connection.WIFI]

Top comments (0)