Skip to content

Instantly share code, notes, and snippets.

@xkomiks
Created April 15, 2022 08:13
Show Gist options
  • Save xkomiks/a765f53d2f5ec85f0cc31e8e9f8bd270 to your computer and use it in GitHub Desktop.
Save xkomiks/a765f53d2f5ec85f0cc31e8e9f8bd270 to your computer and use it in GitHub Desktop.
Console logging the focused element as it changes
document.addEventListener('focus', () => {
console.log('focused: ', document.activeElement)
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment