tags:

views:

26

answers:

1

Hi

I have the following html and the text for the input "fg" is not visible.

<td style="background-color: white;">
<input id="NormalDay1" class="tsm_textbox" type="text" value="fg" size="20" name="NormalDay1" style="background-color: white;"/>
</td>

I have checked for any color attributes in firebug but can't see any.

Any ideas why?

Malcolm

+1  A: 

In Firefox, when you refresh a page, input fields maintain their previous value, regardless of what the value attribute is in the HTML. Select the address bar and press enter, and it should revert to its default text.

nickf
It happens in IE as well? But I tried this
Malcolm