Re: Anchor dilemma

You, Yannick Cadin wrote:
++ 
++ Hi,
++ 
++ I would like to know if the construction below is possible or not? (Because  
++ the same text acts as a target and as a link.)
++ 
++ 
++ ... <A NAME="target"><A HREF="link_to_something">the text</A></A> ...

Not valid.

++ If it is wrong, I think I must use the syntax below:
++ 
++ ... <A NAME="target"></A><A HREF="link_to_something">the text</A> ...

No, as some browsers can't handle empty anchors.

Use:
<a name = "target" href = "link">Text</a>



Abigail

Received on Tuesday, 13 February 1996 08:34:59 UTC