javascript thread: Nav Bar Color
I figured it out, I changed the following lines:
if (myName.style) {
myName.style.color = "#00ffff";
}
to:
if (document.getElementById(myName).style) {
document.getElementById(myName).style.color = "#00ffff";
}
Regards,
Bernie
|





