Created
October 7, 2024 08:53
-
-
Save undrafted/2da24e67cd07c1d4ef9f1bcb96b46115 to your computer and use it in GitHub Desktop.
Focus logging on dev tools
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
$('*').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