Skip to content

Instantly share code, notes, and snippets.

@undrafted
Created October 7, 2024 08:53
Show Gist options
  • Save undrafted/2da24e67cd07c1d4ef9f1bcb96b46115 to your computer and use it in GitHub Desktop.
Save undrafted/2da24e67cd07c1d4ef9f1bcb96b46115 to your computer and use it in GitHub Desktop.
Focus logging on dev tools
$('*').on('focus blur', function(event) {console.log(event.type + " to:"); console.log(document.activeElement);});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment