Check the Network Connection in PhoneGap

// check to see if the network is reachable
setTimeout(function() {
  navigator.network.isReachable("www.google.com",
  networkConnectionCheck, {isIpAddress:false});
}, 500);

function networkConnectionCheck(reachability) {
  if ( reachability.remoteHostStatus == NetworkStatus.NOT_REACHABLE ) {
    navigator.notification.alert("You appear to be offline.", "your app name");
  }
};
 
check_the_network_connection_in_phonegap.txt · Last modified: 2010/07/28 14:59 by Joel Dare
 
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki