Created
February 2, 2020 18:18
-
-
Save digisavvy/e083706568eb19e250aab9739d2720ea to your computer and use it in GitHub Desktop.
Sends your tab presses in-browser to the console in 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
| document.body.addEventListener('focusin', (event) => { | |
| console.log(document.activeElement) | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment