Guest User

Untitled

a guest
Jul 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. var ccc = 'rgb(204, 204, 204)';
  2. [].slice.call(document.querySelectorAll('table, td')).forEach(function(element){
  3. var style = document.defaultView.getComputedStyle(element, null);
  4. if (style.borderTopColor == ccc) element.style.borderTop = 'none';
  5. if (style.borderRightColor == ccc) element.style.borderRight = 'none';
  6. if (style.borderBottomColor == ccc) element.style.borderBottom = 'none';
  7. if (style.borderLeftColor == ccc) element.style.borderLeft = 'none';
  8. });
Add Comment
Please, Sign In to add comment