I don't know, no code I've seen ever hides the link on my browser anyway. If you don't want the link to show a diffrent way would be to create your own link using a span tag:
Code:
<span class="link" onclick="window.location ='/'">Home</span>
Then assign the style in a style block:
Code:
span.link
{
text-decoration: underline;
cursor:hand;
}
Then use your loop code to assign onmouseovers etc.:
Code:
var colSpans = document.getElementsByTagName("span");
for (var i = 0; i < colSpans.length; i++)
{
if (colSpans[i].className == "link")
{
//colSpans[i].onmouseover = etc.
}
}
Harking back, the ALINK attribute goes into the body tag, not the onmouseover code. See the link I posted.
<quote>
this will be my last question
</quote>
Can I bet on that :)
--
Joe