Script for Jumping, from One Link, to further down a webpage?

by 5 replies
7
#main internet marketing discussion forum #jumping #link #script #webpage
  • You use anchor links.

    Here is a document that describes it: http://www.yourhtmlsource.com/text/internallinks.html
    • [ 1 ] Thanks
    • [2] replies
    • Yes.
      Your anchor link looks like this:
      <a href="#mytarget">click here</a>

      Then add this where you want the link to jump to:
      <a name="mytarget"></a>
      • [ 1 ] Thanks
      • [1] reply
    • For example,

      Somewhere in your page you would name something:
      Code:
      <a name="top">This is the top of the page</a>
      Then for your jump link you would do this:
      Code:
      <a href="#top">Go to the Top</a>
      • [ 1 ] Thanks

Next Topics on Trending Feed