Skip to content

Instantly share code, notes, and snippets.

@davatron5000
Last active August 29, 2015 13:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davatron5000/9232164 to your computer and use it in GitHub Desktop.
Save davatron5000/9232164 to your computer and use it in GitHub Desktop.
var tds = document.querySelectorAll('td');
for(i=0;i<tds.length;i++) {
var td = tds[i];
var txt = td.textContent.trim();
if(txt == 'Yes') {
td.style.backgroundColor = 'rgba(0,255,0,0.1)';
} else if(txt == 'No' ){
td.style.backgroundColor = 'rgba(255,0,0,0.1)';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment