Posted by Jonathan N. Little on 02/18/07 23:35
TOP POSTING CORRECTED
> "Thomas Hejl Pilgaard" <lazyjones@tdcspace.dk.dk> wrote in message
> news:cbkXe.172$3I.144@news.get2net.dk...
>> Am I wrong in thinking that there used to be a possibility to make a
link
>> without the underscoring?
>> Maybe some parameter in the anchor tag?
Patrick wrote:
> <%@ LANGUAGE="VBSCRIPT" %>
> <html>
> <head>
> <script>
>
> function hidestatus(){
> window.status=''
> return true
> }
>
> if (document.layers)
> document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
>
> document.onmouseover=hidestatus
> document.onmouseout=hidestatus
> </script>
> </head>
>
> Then create a link like so...
> <a href=http://www.yourdomain.com/ onmouseover="style.color='red'"
> onmouseout="style.color='blue'">your link</a>
> This will remove the underscore and then apply a color scheme for the link
> upon mouseover.
And just how is this above supposed to remove the underscore?
To OP, the answer is no. There is no attribute of the A element to do
this your need to use CSS
A { text-decoration: none; }
But if you do so, you must provide some means to identify that you have
a link or you will frustrate your visitors as they play the game
"Where's Waldo" hunting for your links.
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Navigation:
[Reply to this message]
|