Skip to content

Instantly share code, notes, and snippets.

@jschunk58
jschunk58 / dae.md
Created October 3, 2019 21:11 — forked from MelSumner/dae.md

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"; })();