Skip to content

Instantly share code, notes, and snippets.

@lwkchan
Created November 14, 2022 18:48
Show Gist options
  • Save lwkchan/784209132b693b2534ba3765c2400fbf to your computer and use it in GitHub Desktop.
Save lwkchan/784209132b693b2534ba3765c2400fbf to your computer and use it in GitHub Desktop.
Logs active element in console when using tab key to navigate
document.body.addEventListener('keydown', function(e) {
if (e.which === 9) {
setTimeout(function() {
console.log(document.activeElement);
}, 100);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment