How do I page jump?
Page jumping is where you click a link and instantly get moved somewhere further up or down a long page. Try it:
Why use it?
You might have a list of items at the top of the post and using these jump links means you can allow someone to jump straight to a place rather than scrolling down and looking.
You could also use it to make a post jump al over the place is you wanted.
How to do it.
The link starts it (the ‘Click me’) is written like this:
<a href=”#a”>Click me</a>
Note the #
The link when that goes to is written like this:
<a name=”a”>See?</a>
The #a matches the name=”a”.
So you could have <a href=”#b”>Jump 2</a> to <a name=”b”>Place 2</a>
And to the top?
At the top (or start) you use this:
<a name=”top”></a>
and anywhere you want a link to zoom them to the top of the page, you put this:
<a href=”#top”>top</a>
That’s all there is to it :)
Okay, now back to the top
