Posted by jim on 02/06/07 12:57
You've almost got it there Gary...
==========================================
Instead of this: <h1 id="heading1">Heading1</h1>
use this: <a name="heading1"/><h1 id="heading1">Heading1</h1>
I'm guessing that you want the user to see the text, "Heading1". The
target anchor or 'a' tag will be invisible (ie: the <a name="____" /
>) but
it needs to be there in order for the link to work: <a
href="#________">Heading1</a>
So there are two parts to internal links:
1. the link: <a href="#link_name">Link Name</a>
and,
2. the target: <a name="link_name" />
Each of them uses the <a tag, just that one is viewable and the
other is not!
Hope that helps,
Jim
[Back to original message]
|