Guest User

Untitled

a guest
Jul 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // For debugging HTML and CSS
  2. function borderAll(tag, color) {
  3. Array.prototype.slice.call(
  4. document.getElementsByTagName(tag)).forEach((el) => {
  5. el.style.border = '1px solid ' + (color || '#ff0000');
  6. });
  7. }
Add Comment
Please, Sign In to add comment