How to link to an anchor on a dynamic page?

^

Hi Daniel :raised_hand_with_fingers_splayed:

You need the ID on the element that you want to scroll to, then add it at the end of the url, for example:

https:// www. domain .com/#elementID

Alternatively, you can use location parameters to add the element ID to the URL, and code the page to auto scroll whenever it found the ‘scrollTo’ property in its URL.

https:// www. domain .com/?scrollTo=elementId

Hope this helps~!
Ahmad