Does Wisetail Support Anchors/Jumplinks?

Created:
Updated:
Avatar
by C.W. Holeman III
Follow

Yes. Here's the process to use a web-standard Anchor (also known as a Jumplink).

In any Text Block, where you want the page to jump to (the Destination), you can click the More Menu () → Code View (<>) → add the following code:

Screenshot 2025-02-20 at 13.38.44.png

<a id="end">Jump To Me</a>

Notes:

  • The Destination can be placed inside any paragraph, heading, list, etc.
  • You can have multiple anchors in one page.
  • The ID on each anchor can be whatever you want, as long as each one on the page is unique.
  • The text inside the anchor can also be anything you want.

Then where you want to place the Link, edit the code in the text block, as above, and make a link that points to href="#end", such as:

<p>Jump to <a href="#end">here</a>.</p>

Note that you can also link directly to an anchor on another page by getting the URL of the page, and appending the anchor to it. For example,

https://support.wisetail.com/hc/en-us/articles/34985346572820#end

Will load this page, and point to ↳this anchor↵.

Additionally, you can make the Link from any Links widget in a similar manner.