Skip to content

Instantly share code, notes, and snippets.

@lhsazevedo
Created January 14, 2021 15:25
Show Gist options
  • Save lhsazevedo/b356f85a79fb06b9723087c0c0a753e3 to your computer and use it in GitHub Desktop.
Save lhsazevedo/b356f85a79fb06b9723087c0c0a753e3 to your computer and use it in GitHub Desktop.
Window online and offline events test
window.addEventListener('offline', function () {
console.log('We are offline')
})
window.addEventListener('online', function () {
console.log('We are online')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment