> 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: browserLocale() # Method package: wixWindowFrontend # Method menu location: wixWindowFrontend --> browserLocale # Method Link: https://dev.wix.com/docs/velo/apis/wix-window-frontend/browser-locale.md # Method Description: Gets the locale of a site visitor's browser. A locale, also known as an IETF language tag, is an abbreviated code that defines the language, country, and other aspects of a site visitor's browser, such as number format and date format. Some common locales include: + `"en-US"`: English, United States + `"en-GB"`: English, British + `"es-ES"`: Spanish, Spain + `"de-DE"`: German, Germany + `"ja-JP"`: Japanese, Japan + `"fr-CH"`: French, Switzerland + `"it-IT"`: Italian, Italy # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get the locale of a site visitor's browser ```javascript import wixWindowFrontend from 'wix-window-frontend'; // ... let browserLocale = wixWindowFrontend.browserLocale; // "en-US" ``` ---