lundi 19 janvier 2015

How to check internet network conection in Phonegap


Vote count:

0




I am unable to check internet connection in phonegap. this is what i have done so far.


document.addEventListener("deviceready", onDeviceReady(), false);



function onDeviceReady() {

checkConnection();
}

function checkConnection() {
var networkState = navigator.connection.type;
var states = {};
states[Connection.UNKNOWN] = 'Unknown connection';
states[Connection.ETHERNET] = 'Ethernet connection';
states[Connection.WIFI] = 'WiFi connection';
states[Connection.CELL_2G] = 'Cell 2G connection';
states[Connection.CELL_3G] = 'Cell 3G connection';
states[Connection.CELL_4G] = 'Cell 4G connection';
states[Connection.CELL] = 'Cell generic connection';
states[Connection.NONE] = 'No network connection';

alert('Connection type: ' + states[networkState]);
}


Alert dialog is not popup.



asked 1 min ago







How to check internet network conection in Phonegap

Aucun commentaire:

Enregistrer un commentaire