Click to See Complete Forum and Search --> : go to and return


bcwood
08-24-2006, 01:12 PM
On my index page I want to be able for user to pick a letter and go to that spot and then click on a return from the area. Would someone point me in the right direction. tks

sae
08-24-2006, 01:21 PM
Try this:

You have to make the letter a link

<a href="index.html#first">Link to first section</a>


Then go to the section of the page you want that link to go to and add this

<a name="first">Title for section A</a>


In the same way you can add an anchor to the top of your page and have a link directing them to go to the top.

bcwood
08-24-2006, 01:23 PM
Thanks for the quick reply, will try that and see if that is what I want.