Log in

View Full Version : Please Help - Drop down links?



crystal butterfly
01-06-2006, 09:14 AM
Hi, sorry I don't know the name but, Im desperately searching for the HTML code (or java?) for when you go to click on a link, and It takes you down the page, to that portion of particular text you want to read. If any one knows what I mean and knows the code for this I'd greatly appreciate it!!!! :)
Thanks!
-Kerrie

mvivit
01-06-2006, 07:39 PM
Hi, Kerrie...

It's easy to set these links up in HTML. You need to use <a> (anchor) tags. Let's say you have the following structure:

Table of Contents
Section 1
Section 2
Section 3

You need to add <a> links to the section headings like this:

<a name="section1"></a>Section 1

etc.

Now in your Table of Contents, add the following <a> tags:

<a href="#section1">Section 1</a>
<a href="#section2">Section 2</a>

etc.

Depending on how long the page is, you might want to add "Back to top" links.