Skip to content

Instantly share code, notes, and snippets.

View nearbycoder's full-sized avatar
:octocat:
Enjoying GitHub | Chrome Plugin free

Josh Hamilton nearbycoder

:octocat:
Enjoying GitHub | Chrome Plugin free
View GitHub Profile
@kentcdodds
kentcdodds / bookmarklet
Created March 27, 2018 03:54
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);}})();