To give the CRM form labels a special appearance you may want to have different colors to them.
Write this code snippet on OnLoad Event of the form:
var str = "";
str += "First Name";
str += "<SPAN style='color:blue'> Only for info. </SPAN>";
crm_form_label.innerHTML = str;
Happy coloring form labels!!
No comments:
Post a Comment