Search...
scrollTo( )
Scrolls the page to the top of the element using an animation.
Description
The scrollTo()
function returns a Promise that is resolved when the
animated scroll is complete and the element is in view.
To scroll to a specific location on the page, see the wix-window
scrollTo()
function.
Tip: Use the
wix-window
scrollTo()
function to scroll directly to an element, and also disable the animation. To get the coordinates for scrolling, display the Wix Editor Toolbar. In the Editor, move the cursor to the top-left pixel where you want the page to scroll to. The X and Y axis Position values show the coordinates.
Notes:
- You can't call the
scrollTo()
function on an element inside a repeater.- To use
scrollTo()
with a header element, the Header Scroll Setting must be set to Scrolls with site. To scroll to the header with other settings, use thewix-window
scrollTo()
function.
Syntax
function scrollTo(): Promise<void>
scrollTo Parameters
This function does not take any parameters.
Returns
Fulfilled - When the scroll is complete.
Return Type:
Promise<void>
Mixed in from:$w.Element
Was this helpful?
Scroll the page to an element
Copy Code
1$w("#myElement").scrollTo();
Scroll the page to an element and log a message when done
Copy Code
1$w("#myElement").scrollTo()2 .then( ( ) => {3 console.log("Done with scroll");4} );