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

by entry
5 replies
What is the script, where you click on a link, and then you skip to the Order button of a sales page for example.

The Order now button is halfway down the page, but when they click it, it automatically scrolls down to the buttom of that page.
#jumping #link #script #webpage
  • Profile picture of the author lotsofsnow
    You use anchor links.

    Here is a document that describes it: http://www.yourhtmlsource.com/text/internallinks.html
    Signature

    Call Center Fuel - High Volume Data
    Delivering the highest quality leads in virtually all consumer verticals.

    {{ DiscussionBoard.errors[3700119].message }}
    • Profile picture of the author Ralf Skirr
      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>
      {{ DiscussionBoard.errors[3700147].message }}
      • Profile picture of the author entry
        Originally Posted by Ralf Skirr View Post

        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>

        hey yes, i know you use anchor links.

        Just wanted to know how to do it. So using anchor text is not a Script, is it ?


        Cheers
        Signature
        I Have to say a Massive...THANK YOU to every Warrior who has helped me, and thanks to every warrior who helps me in the future...
        {{ DiscussionBoard.errors[3700223].message }}
        • Profile picture of the author Mike Hlatky
          Originally Posted by entry View Post

          hey yes, i know you use anchor links.

          Just wanted to know how to do it. So using anchor text is not a Script, is it ?


          Cheers
          Nope, just some HTML
          {{ DiscussionBoard.errors[3700232].message }}
    • Profile picture of the author mikeroosa
      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>
      {{ DiscussionBoard.errors[3700159].message }}

Trending Topics