Skip to content

Instantly share code, notes, and snippets.

@BinaryMuse
Last active August 29, 2015 13:57
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BinaryMuse/9592591 to your computer and use it in GitHub Desktop.
Save BinaryMuse/9592591 to your computer and use it in GitHub Desktop.
Highlight react DOM
setInterval(function() {
Array.prototype.slice.call(document.querySelectorAll('[data-reactid]')).forEach(function(node) {
node.style.backgroundColor = '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