Skip to content

Instantly share code, notes, and snippets.

@oboshto
Created May 22, 2017 11:15
Show Gist options
  • Save oboshto/81ad99042fa2455795e315bbb2045425 to your computer and use it in GitHub Desktop.
Save oboshto/81ad99042fa2455795e315bbb2045425 to your computer and use it in GitHub Desktop.
detect tab focus
element.addEventListener('keyup', (e) => {
if (e.keyCode === 9) doSmthng();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment