Skip to content

Instantly share code, notes, and snippets.

@glynrob
Created January 6, 2013 12:52
Show Gist options
  • Save glynrob/4466926 to your computer and use it in GitHub Desktop.
Save glynrob/4466926 to your computer and use it in GitHub Desktop.
List webapp detect if online
// display if they are online or not
if (!navigator.onLine){
$('#status').html('Offline');
} else {
$('#status').html('Online');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment