How can I do this to the link?

Ok so I’ve been looking at the Developer Forum Formatting Guide and I saw that when you click one of these:
Screen Shot 2020-06-08 at 10.06.52 PM
This would happen to the link:


So now I ask, can you do this? If so, how?

1 Like

Do <a name = "something"> at the place to go to, and <a href = "#something"> at the place to link from.

2 Likes

I struggled with this forEVER, so I’m happy to explain it:

Adding #namehere as a link will jump the page to any <a> tag with that name.

**[Link to bottom thing](#mysupercooltag)**
e
e
e
e
e
e
e
e
e
e
e
e
e
e
e
e
<a name="mysupercooltag"></a>
the bottom thing

You don’t actually have to put anything in the <a> tag. In the end, you get this:

Link to bottom thing
e
e
e
e
e
e
e
e
e
e
e
e
e
e
e
e

the bottom thing

5 Likes

Ok so if I were to put a link in my game and it would go to that certain spot, how would I do the link?

Basically: I want to put this topic but I want it to go to the event details:
Screen Shot 2020-06-08 at 10.32.09 PM

I’m not sure if this would work from another page, but just try adding #tagname to the end of the URL.

tried doing that, just reloaded the page but had the same URL.

Since the <a> tag is hidden inside the [details] tag when you initially load the page, it can’t find anything to jump to.

3 Likes