Skip to content

Instantly share code, notes, and snippets.

@NE-SmallTown
Forked from kentcdodds/bookmarklet
Created March 27, 2018 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NE-SmallTown/a31247c70020919678c42ab08d2c5cd8 to your computer and use it in GitHub Desktop.
Save NE-SmallTown/a31247c70020919678c42ab08d2c5cd8 to your computer and use it in GitHub Desktop.
activeElement logger bookmarklet
javascript:(function(){if(window._activeElInterval){clearInterval(window._activeElInterval);delete window._activeElInterval;}else{var activeEl;window._activeElInterval=setInterval(function(){var currentActiveEl=document.activeElement;if(currentActiveEl!==activeEl){activeEl=currentActiveEl;console.log(activeEl);}},200);}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment