How to scroll user to the top? Any ideas

Hi guys,
How can I have a user scroll to the top when he clicks on a different tab?
Here’s my site - https://hub.softscotch.com/

Every time someone clicks on a different tab it loads the content at the bottom & the user would have to scroll to the top to view content

There’s an action for “Scroll To.” You specify an element and the page will scroll to that element. Simply choose an element at the top of the page!

2 Likes

Use toolbox plugin’s javascript action with the following for an instant scroll to top:

var javascriptpageid = document.getElementById("bubblepageid");

javascriptpageid.scrollTo(0,0);

You can make the IDs whatever you want. Just make sure you place the bubble side ID into the ID area of your page’s edit window.

You can also use this if you’ve created a sub-scrolling area with css and want to scroll to the top of that. Just replace the page ID with the group’s ID.

3 Likes

You can also use the page name in the sroll to action.
It will take you right to the top.

1 Like

@andrewgassen @aj11 @di_lucena Thanks a lot guys for helping me with this. I used a field on the top as a header & used the option Scroll to element to do this.

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.