Last active
December 4, 2019 14:35
-
-
Save defmech/a5a4cac2b1bb7b8d66939c4196bec12f to your computer and use it in GitHub Desktop.
Here’s a handy snippet if you are debugging website accessibility. Logs out the element that currently has focus.
This file contains 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
window.addEventListener('keyup', (event: KeyboardEvent) => { | |
if (event.key === "Tab") { | |
console.log('document.activeElement', document.activeElement); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment