Created
July 31, 2019 22:44
-
-
Save missmatsuko/d0b951a15b33e2469e6182d64c932389 to your computer and use it in GitHub Desktop.
a11y debug focus script - logs active element on tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener('keyup', (e) => { | |
if (event.key === 'Tab') { | |
console.log(document.activeElement); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment