css
Pandemic asked:

ok, I have some css defined that will change the background color of a text box once it has focus. The code works fine, except for if I set the focus to a previously disabled (recently enabled by javascript) text box. Any ideas on how I can fix this?

Here is the code:

input[type=text]:focus
{
background-color: #DEE1F7;
}

By the way this code doesn’t work in Internet Explorer. That is another problem I’m trying to tackle.