Add link to another mod?

Hi there!

I am not sure how to make a link that takes you to another mod.

For instance: I want a button that takes you an specific ID of another mod when clicking.

Just do not know how to make the current mode to find the other mod’s ids.

Thank you,

Hi and welcome!

In general, you can use the href="#id" attribute to do what you are suggesting. So in order to link to a mod like <div id="anymod-abcde"></div>, you could use a link like this:

<a href="#anymod-abcde">
  Link to mod
</a>

Then clicking on that link would scroll the page to the mod. Let us know if you have any questions about this :+1:

Thank you I will try!

1 Like