gradyp
Posts: 848
Joined: 28 Jun 09
Trust:
30 Aug 09 5:54 am
Craig,
It is possible if you are doing this to one of your own pages by inserting an anchor tag in the code using the name attribute at the location you wanted to jump to.
For example, if you wanted to link to the bottom of a page, you could insert the tag <a name="bottom"><h3>Bottom of Page</h3></a> where you wanted to link to. Then, where you wanted to put your link, you would just add #bottom to the end of the link. If you happen to be in the same page, you could just reference the #bottom directly, but if you were on a different page, you would put <a href="linkpage.html#bottom">This links to the bottom of the page</a>.
If you are linking to a page belonging to someone else, unless they have an anchor like this already set up, you would not be able to do something like this.
Grady