This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
function colorCodeTags(){ | |
var classTitle = document.getElementsByClassName("ms-vb-title"); // find all tags in the title column | |
var colorCode = document.getElementsByTagName("td");// finding all the TD tags | |
var i = 0; | |
var j = 0; | |
for (i = 0; i < colorCode.length; i += 1) { | |
var colorCell = colorCode[i]; | |
var innerText = colorCell.innerText |