Skip to content

Instantly share code, notes, and snippets.

@dhavaln
Created July 9, 2012 15:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhavaln/3077171 to your computer and use it in GitHub Desktop.
Save dhavaln/3077171 to your computer and use it in GitHub Desktop.
Cordova Online Example
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="lib/android/cordova-1.7.0.js"></script>
<script type="text/javascript">
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady()
{
document.addEventListener("online", deviceIsOnline, false);
}
function deviceIsOnline(){
alert("Im online!");
}
</script>
</head>
<body >
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment