> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: siteWindow.scrollTo(x: number, y: number, options: ScrollToOptions) # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/window/scroll-to.md # Method Description: Scrolls a page to the specified location. The `x` and `y` parameters determine the top-left pixel that's displayed on screen after the scroll. > **Tip**: To get the coordinates for scrolling, click on an element to open the [Inspector panel](https://support.wix.com/en/article/studio-editor-using-the-inspector-panel) (Wix Studio), or open the [editor toolbar](https://support.wix.com/en/article/wix-editor-using-the-editor-toolbar-to-adjust-elements) (Wix Editor). Then 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. Use the `options` parameter to specify the options to use when scrolling. # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Scroll the page to a location ```javascript import { window } from '@wix/site-window'; // ... await window.scrollTo(100, 500); ``` ## Scroll the page to a location and log a message when done ```javascript import { window } from '@wix/site-window'; // ... window.scrollTo(100, 500) .then( ( ) => { console.log("Done with scroll"); } ); ``` ## Scroll the page to a location without an animation ```javascript import { window } from '@wix/site-window'; // ... await window.scrollTo(100, 500, {"scrollAnimation": false}); ```