Skip to content

Instantly share code, notes, and snippets.

@TravelingTechGuy
Created April 1, 2014 01:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TravelingTechGuy/9905941 to your computer and use it in GitHub Desktop.
Save TravelingTechGuy/9905941 to your computer and use it in GitHub Desktop.
Check if device is online
<!DOCTYPE html>
<html>
<head>
<script>
window.addEventListener("offline", function(e) {alert("offline");})
window.addEventListener("online", function(e) {alert("online");})
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment