> 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 ## Resource: navigateBack() ## Article: navigateBack() ## Article Link: https://dev.wix.com/docs/sdk/host-modules/dashboard/navigate-back.md ## Article Content: # navigateBack() Navigates the user back to previous dashboard page. It's equivalent to the user clicking the browser's back button. ## Signature ```ts () => void ``` ## Examples > **Note:** To use this method in [self-hosted apps](https://dev.wix.com/docs/sdk/articles/get-started/about-self-hosted-apps.md), you need to create a [client](https://dev.wix.com/docs/sdk/articles/set-up-a-client/about-the-wix-client.md). See the [setup](https://dev.wix.com/docs/sdk/host-modules/dashboard/introduction.md) guide for more details. ### Navigate back to the previous page ```typescript dashboard.navigateBack(); ```