Skip to content

Instantly share code, notes, and snippets.

@PERCE-NEIGE
Forked from MelSumner/dae.md
Last active November 30, 2020 11:44
Show Gist options
  • Save PERCE-NEIGE/f57649fcf963c38866a5a4e1dfd25df9 to your computer and use it in GitHub Desktop.
Save PERCE-NEIGE/f57649fcf963c38866a5a4e1dfd25df9 to your computer and use it in GitHub Desktop.
Bookmarklet

Document Active Element (DAE) is a JavaScript bookmarklet intended to help you more easily identify where the activeElement is on your screen.

To use:

  1. Add a new bookmark
  2. in the "Name" field, type DAE
  3. in the URL field, add the following code:
javascript:(function(){ document.activeElement.style.border = "1px solid red"; })();

That's it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment