Skip to content

Instantly share code, notes, and snippets.

@rlueder
Forked from ryanve/log-tab-focus.js
Created August 28, 2017 19:44
Show Gist options
  • Save rlueder/8807e2814e9f14b6d00b7e687edc3df5 to your computer and use it in GitHub Desktop.
Save rlueder/8807e2814e9f14b6d00b7e687edc3df5 to your computer and use it in GitHub Desktop.
Log :focus element each time tab key is pressed
document.addEventListener('keyup', function(e) {
9 != e.keyCode || e.metaKey || e.ctrlKey || console.log(document.activeElement)
}, false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment