Skip to content

Instantly share code, notes, and snippets.

@mndvns
Created February 27, 2015 07:48
Show Gist options
  • Select an option

  • Save mndvns/b85bea825e66a9d5c69a to your computer and use it in GitHub Desktop.

Select an option

Save mndvns/b85bea825e66a9d5c69a to your computer and use it in GitHub Desktop.
highlight all react elements
setInterval(function() {
Array.prototype.slice.call(document.querySelectorAll('[data-reactid]'))
.forEach(function(element) {
element.style.background = 'rgba(255,0,0,0.1)';
});
}, 500)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment