PDA

View Full Version : HTML Anchor help


Scrubking
09-05-2007, 02:11 PM
I was wondering if there is a way for me to link to another page that's not mine and have the page scroll down to a specific word like an anchor link. Keep in mind I want to link to a page that is not mind and I have no control over. Thanks.

SOSTrooper
09-05-2007, 02:33 PM
I found this tutorial (http://smgpublish.bu.edu/training/html_intro/anchor6.htm). Not sure if it's what you're looking for.

redgopher
09-06-2007, 02:01 PM
The page you're linking to must have an anchor already in there. An anchor looks like this:

<a name="foo"></a>

When you link to this anchor it'll look like this:

<a href="http://www.yomomma.com/page.html#foo">your link</a>

Scrubking
09-06-2007, 02:55 PM
Thanks.