Deltaflyer
Programmer
i am currently using
function mousein(x)
{
x.style.color = '#000000'
x.style.textDecoration = 'none'
}
function mouseout(x)
{
x.style.color = '#FFFFFF'
x.style.textDecoration = 'underline'
}
To change the style of my hyperlinks when the mouse is hovered over them,
<a href=blah.com onmouseover=javascript:mousein(this) onmouseout=javascript:mouseout(this)>blah.com</a>
at the moment the only result i get is the underline vanishes and replaces when the mouse is moved away, i have to accomodate IE6 AND NS4+, any help would be greatly appreciated. DeltaFlyer
The Only Programmer To Crash With Style. LOL
function mousein(x)
{
x.style.color = '#000000'
x.style.textDecoration = 'none'
}
function mouseout(x)
{
x.style.color = '#FFFFFF'
x.style.textDecoration = 'underline'
}
To change the style of my hyperlinks when the mouse is hovered over them,
<a href=blah.com onmouseover=javascript:mousein(this) onmouseout=javascript:mouseout(this)>blah.com</a>
at the moment the only result i get is the underline vanishes and replaces when the mouse is moved away, i have to accomodate IE6 AND NS4+, any help would be greatly appreciated. DeltaFlyer
The Only Programmer To Crash With Style. LOL