Skip to content

Instantly share code, notes, and snippets.

@skew202
Created November 2, 2016 14:49
Show Gist options
  • Save skew202/6cab5a60fa8072097bb8e5ba2635a7e8 to your computer and use it in GitHub Desktop.
Save skew202/6cab5a60fa8072097bb8e5ba2635a7e8 to your computer and use it in GitHub Desktop.
//Using $$
[].forEach.call($$("*"),function(a){
a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)
})
//Using document.querySelectorAll:
[].forEach.call(document.querySelectorAll("*"),function(a){a.style.outline="1px solid #"+(~~(Math.random()*(1<<24))).toString(16)})
//source: Addy Osmani
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment