Hi, hope you all are doing great today.
Quick question… Is there a supported way to manipulate the inner HTML of a web resource?
Right now I have the following code to change the color and name of certaing HTML components, however, this is unsupported and I'm trying to find a workaround for MS Dynamics 365(UCI):
document.getElementById('segmentation_value').innerHTML = name;
var element = document.getElementsByClassName('div_container'); for (i = 0; i < element.length; i ) { element[i].style.backgroundColor = bannerColor; }
Thanks in advance!