Click to See Complete Forum and Search --> : textbox color


StyM
December 9th, 2003, 03:17 AM
hello and Good Day.

may i know how i can change the background color of a textbox using javascripts????

thanks a lot.

professorX
December 9th, 2003, 06:04 AM
Use CSS (style).

For browsers with DOM:
document.getElementById('textboxID').style.backgroundColor = "#00FF00";

For browsers:
document.forms['formName'].elements['textboxName'].style.backgroundColor = "#00FF00";

StyM
December 9th, 2003, 08:35 PM
thanks for the help.