Skip to content

Instantly share code, notes, and snippets.

@iceener
Last active August 2, 2020 09:36
Show Gist options
  • Save iceener/4649533ee1087c4abe8b490e0e875c45 to your computer and use it in GitHub Desktop.
Save iceener/4649533ee1087c4abe8b490e0e875c45 to your computer and use it in GitHub Desktop.
// Focused tab
const isBrowserTabFocused = () => !document.hidden;
isBrowserTabFocused();
// Redirect to...
const redirect = (url, replace = false) => {
if (asLink) {
window.location.href = url;
}
window.location.replace(url);
};
redirect('https://google.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment