To do this, you need 2 elements:
Firstly a point to jump to, which is called an anchor. This is added by inserting this code into your post:
[anchor=YourAnchorName]Your displayed anchor text[/anchor]
Obviously, YourAnchorName is whatever you decide to call it and needs to be unique within your post. Similarly, Your displayed anchor text is what will be displayed as a sort of section heading.
The second element is a 'goto' This displays a link, which can be clicked on and this will scroll to wherever the corresponding 'anchor' is. You can include multiple 'goto's which will all scroll/jump to the same place. Add a goto using the following code in your post:
[goto=YourAnchorName]Your displayed link text[/goto]
By way of an example, the following code:
- Code: Select all
[anchor=contents]Contents[/anchor]
[list]
[goto=testanchor1]Section 1[/goto]
[goto=testanchor2]Section 2[/goto]
[goto=testanchor3]Section 3[/goto]
[/list]
[anchor=testanchor1]Heading for section 1...[/anchor]
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
[goto=contents]Return to Contents[/goto]
[anchor=testanchor2]Heading for section 2...[/anchor]
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
[goto=contents]Return to Contents[/goto]
[anchor=testanchor3]Heading for section 3...[/anchor]
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
[goto=contents]Return to Contents[/goto]
would result in:
Contents
Heading for section 1...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Return to Contents
Heading for section 2...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Return to Contents
Heading for section 3...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Lorem ipsum ... etcetera ...
Return to Contents
If all of this is complete gobbledegook, please just ignore it
