> 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: siteNavigateMobile.openURL(url: string) # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/navigate-mobile/open-url.md # Method Description: Directs the mobile app to open the specified URL in the device's browser. ![developer preview tag](https://user-images.githubusercontent.com/89579857/213133550-2b4fa3e8-e8fc-4513-a733-00abcc70925c.png) Supported URL formats: + An external web address. For example, `"http(s)://"`. + A URI such as a phone number, geographic coordinates, social media link, or email. For example, `"mailto:@?subject="`. # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Open a URL in the device's browser ```javascript import { navigateMobile } from '@wix/site-navigate-mobile'; /* Sample url value: 'https://wa.me/15551234567?text=I%27m%20interested%20in%20your%20car%20for%20sale'*/ navigateMobile.openURL(url) .then(() => { console.log('URL opened successfully!'); }) .catch((error) => { console.error(error); // Handle the error }); /* Promise resolves to void */ ```