> 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: skip(skip: number) # Method package: wixSearch # Method menu location: wixSearch --> WixSearchBuilder --> skip # Method Link: https://dev.wix.com/docs/velo/apis/wix-search/wix-search-builder/skip.md # Method Description: Sets the number of documents to skip before returning search results. The `skip()` function defines the number of results to skip in the search results before returning new search results. For example, if you search your site and 20 documents match your search, but you set `skip()` to 5, the results returned will skip the first 5 documents that match and return the 6th through 20th documents. By default, `skip()` is set to 0. The maximum value that `skip()` can accept is `100000`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Add a skip to a search ```javascript let newSearch = search.skip(10); ``` ## Create a search, add a skip, and run it ```javascript import wixSearch from 'wix-search'; // ... $w("#searchInput").onKeyPress((keyPress) => { if (keyPress.key === "Enter") { const phrase = $w("#searchInput").value; wixSearch.search(phrase) .skip(10) .find() .then((results) => { if (results.documents.length > 0) { let documents = results.documents; } else { console.log("No matching results"); } }) .catch((error) => { console.log(error); }); } }); ``` ---