Skip to content

Instantly share code, notes, and snippets.

@digisavvy
Created February 2, 2020 18:18
Show Gist options
  • Select an option

  • Save digisavvy/e083706568eb19e250aab9739d2720ea to your computer and use it in GitHub Desktop.

Select an option

Save digisavvy/e083706568eb19e250aab9739d2720ea to your computer and use it in GitHub Desktop.
Sends your tab presses in-browser to the console in dev tools
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