Click to See Complete Forum and Search --> : BgColor of a textbox


Sonia
07-24-2003, 08:08 AM
Can I change the Background color of a textbox?

Nevermore
07-24-2003, 08:27 AM
Yes:

<input type="text" style="background-color:green;">

Or, if you mean change it with JavaScript:


document.getElementById('urtxtbox').style.background='blue';

Sonia
07-24-2003, 08:44 AM
The first is cool , Thks:D