You can set it using CSS, like this:
[html]<style>input {color: #ff0000;}</style>
<input type="text" name="name" />[/html]
Or do you need another method?
Not quite. document.getEle mentsByTagName( 'input') would be an array of input fields, so you would have to loop over them to set the color and set it with style.color.
Comment