Depending on which option I choose in the above drop down box, it is supposed to either gray the text boxes out, or let the user type in them. I am using the following:
document.getElementById(\'freq2\').disabled=true;
This does not work. But, I can use the following just fine, and it successfully disappears:
document.getElementById(\'freq2\').style.display = \'none\';
Why can I not gray out the text boxes, but I can hide them, and change their colors, etc.?
disabled, notdisable