Skip to content

Instantly share code, notes, and snippets.

@hoox
Last active September 3, 2015 11:58
Show Gist options
  • Save hoox/b83c25fc099c1e246ff5 to your computer and use it in GitHub Desktop.
Save hoox/b83c25fc099c1e246ff5 to your computer and use it in GitHub Desktop.
"Online Offline" Event Listener
window.addEventListener("online", function(e) {
console.log(e.type, navigator.onLine);
});
window.addEventListener("offline", function(e) {
console.log(e.type, navigator.onLine);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment