Skip to content

Instantly share code, notes, and snippets.

@joelennon
Created February 1, 2018 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save joelennon/4896ba84794a028137ef8be2f24eae09 to your computer and use it in GitHub Desktop.
Save joelennon/4896ba84794a028137ef8be2f24eae09 to your computer and use it in GitHub Desktop.
Bookmarklet for highlighting all elements on a page (hat tip: @adamwathan)
javascript:(function(){var style=document.createElement('style');style.innerText='*{outline:1px solid red !important;';document.head.appendChild(style);})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment