excellent, thank you that worked
quick followup, i used the below code. the “text = “milestone name”” ddint appear to do anything, the coloring was based on the order of the list, and case #s. Is that the right way to do it? or should i have adjusted the code to look for the specific text
`jQuery(“#dffs_Pipeline .ms-RadioText”).each(function(i, chk){
var color = “dark grey”;
switch(i){
case 0:
text = “Preliminary sizing of business benefit”
color = “#C65911”;
break;
case 1:
text = “Ideation”
color = “#C65911”;
break;
case 2:
text = “Data team capacity assigned”
color = “#00B050”;
break;
case :
text = “Data source identification”
color = “#00339A”;
break;
}
jQuery(chk).css(“color”, color);
});