We have certain fields that are read-only as they pull data from our AS400. The default font of a read-only field is a very light grey and is very hard to read. How do I make this font darker and easier to read?
I have come across this .js but have not been able to get it to work:
- function setColor() {
- if (document.getElementById("new_name") != null) {
-
- document.getElementById("new_name").disabled = false;
-
- document.getElementById("new_name").style.color = "red";
- }
- }
*This post is locked for comments
I have the same question (0)