Skip to content

Instantly share code, notes, and snippets.

@cybear
Created May 14, 2014 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cybear/bdf357186de14d44cd97 to your computer and use it in GitHub Desktop.
Save cybear/bdf357186de14d44cd97 to your computer and use it in GitHub Desktop.
Demodag hilite demoing people
Array.prototype.slice.call (document.querySelectorAll('tr'),0)
.filter(function(el){
var c = el.querySelector('.class_7');
return c&&c.innerText;
})
.map(function(el){
el.setAttribute('style','background:#fff');
return el;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment