If I have an input field that's disabled, the normal behavior of browsers is to gray out the field to indicate that the field is not available for input. Something like:
<input type='text' value='1234' style='font-weight:bold' disabled />
Was wondering if there was a way to get normal looking text for a disabled field? I've tried various combinations of style attributes, but I can't seem a way to get the text to be normal.
Thanks.