Skip to content

Instantly share code, notes, and snippets.

@vkargov
Created July 3, 2018 20:39
Show Gist options
  • Save vkargov/6a81feee28d4002cfab8d9a6fb66bed5 to your computer and use it in GitHub Desktop.
Save vkargov/6a81feee28d4002cfab8d9a6fb66bed5 to your computer and use it in GitHub Desktop.
make things funky
for (let e of document.getElementsByTagName('*'))
{
let rndc = () => Math.floor(Math.random()*255).toString()
let funkify = function(e) {
this.style.color="rgb(" + rndc() + ',' + rndc() + ',' + rndc()+")"
e.stopPropagation()
}.bind(e)
e.addEventListener('click', funkify)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment