View Full Version : About links...Is this possible? If so, how do you do it?


Crueldade
08-07-2006, 04:10 AM
Okay, so I want to have a link lead to a completely different page, but I want it to also be a page anchor. Help?

bourdelson
08-07-2006, 05:06 AM
It's just a normal link, except with #anchorname at the end of the extension.

Example:

Link is on test.html, but link is to test2.html#stuff. It'll go to whatever has the tag <a name="stuff"></a> around it.

So, just <a href="test2.html#stuff">here's the anchored link</a> will do the trick. :)

Crueldade
08-07-2006, 06:30 AM
Ooh, I see. Thank you! ^_^

bourdelson
08-07-2006, 03:19 PM
You're welcome! :D