madhawaseeeee

grease

May 22nd, 2016
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        stacktest
  3. // @namespace   stacktest
  4. // @description stacktest
  5. // @include https://fiddle.jshell.net/wsqq7wfz/3/show/light/
  6. // @version     1
  7. // @grant       none
  8. // ==/UserScript==
  9.  
  10.  
  11. var thetds = document.getElementsByTagName('td');
  12. for (var j = 0; j < thetds.length; j++) {
  13. if (thetds[j].innerHTML == "May")
  14.     thetds[j].style.backgroundColor = "rgb(250, 0, 0)";
  15. }
Advertisement
Add Comment
Please, Sign In to add comment