Click to See Complete Forum and Search --> : Linking to specific text...


Radio
03-23-2003, 02:23 PM
Hi I'm hoping that you can help me. I have an index page with several listed questions that I wish to link to the three pages that contain the information. I want it so that when they click on a question it takes them not only to the right page (which I know how to do) but to the right section on that page, so that they don't have to scroll down till they find the relevant heading.

Thanks! :)

AdamGundry
03-23-2003, 02:31 PM
For each section on the page you want to target, give it an id (either in the <p> tag preceeding it, or in an <a> tag) like one of these:

<p id="sectionname">
<a id="sectionname"></a>

Then you can link to it using this code:

<a href="page.html#sectionname">Go to section</a>

When this link is clicked, the browser will load page.html and scroll to the tag with the id sectionname.

Adam

Radio
03-23-2003, 02:35 PM
Excellent, thank you very much for such a speedy reply.
I'm going to alter it now. Thank you. :)