> 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: prev() # Method package: wixSearch # Method menu location: wixSearch --> WixSearchResult --> prev # Method Link: https://dev.wix.com/docs/velo/apis/wix-search/wix-search-result/prev.md # Method Description: Retrieves the previous page of search results. The `prev()` function retrieves the previous page of search results. The page size is defined by the [`limit()`](https://dev.wix.com/docs/velo/api-reference/wix-search/wix-search-builder/limit.md) function, can be retrieved using the [`pageSize`](#pageSize) property, and navigating through pages is done with the [`prev()`](#prev) and [`next()`](#next) functions. If items are added or removed between calls to `prev()` the values returned may change. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get the previous page of a search result ```javascript oldResults.prev() .then( (results) => { let newResults = results; let documents = newResults.documents; let firstDocument = documents[0]; let facets = results.facets; let totalCount = newResults.totalCount; let pageSize = newResults.pageSize; let currentPage = newResults.currentPage; let totalPages = newResults.totalPages; let hasNext = newResults.hasNext(); let hasPrev = newResults.hasPrev(); let length = newResults.length; } ) .catch( (error) => { console.log(error); } ); ``` ---