Sep 3, 2000 #1 aneal Programmer Sep 3, 2000 2 US how do you visit a specific part of a page using a link on the same page?
Sep 4, 2000 #2 PSET Technical User Jun 18, 2000 7 AU that is not javascript, but just plain HTML that is called a dynamic anchor. where you want the link to point simply put: <a name="top"> </a> where top is the name of the anchor. To point to it, use: <a href="#top">go to top</a> the hash indicates that it is on the same page. i hope this is of some use to you Upvote 0 Downvote
that is not javascript, but just plain HTML that is called a dynamic anchor. where you want the link to point simply put: <a name="top"> </a> where top is the name of the anchor. To point to it, use: <a href="#top">go to top</a> the hash indicates that it is on the same page. i hope this is of some use to you