This is what happens:
I have an input submit button.
On mouse over text is changed from RED to WHITE.
On mouse out text is changed from WHITE to RED.
Simple eh?
Well IE does it fine but FF makes everything change to RED border, etc.
jscript:
function over(button) {
button.style.color = "#FFFFFF";
}
function out(button) {
button.style.color = "#FF0000";
}
my input button:
<input onMouseOver="over(this)" onMouseOut="out(this)" class="input" type="submit" id="input" name="input">
Any Ideas?
Thanks, Regards X