Hi i have a form which holds several Inputs of type text, now when im clicking on a check box it run a js script which gets each Input text element and colors its background with a color
something like this
var filed=document.getElementById("one");
filed.style.backgroundColor='red';
filed=document.getElementById("two");
filed.style.backgroundColor='red';
...
..
.
This works 100% in FF, but in IE its does nothing until i click on on the the input text, and than all of them turns red....
Any one knows what can be done in this situation?
Thanks ahead.
Daniel.