> For the complete documentation index, see [llms.txt](https://docs.wirebootstrap.com/wirebootstrap/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wirebootstrap.com/wirebootstrap/utilities/browser-location.md).

# Browser Location

Use the `location` object's `param` method to get query values from the URL of the current page.

The example below sets the `param` variable to `SKU001` from the value in the query string of the URL.

```javascript
// https://service?product=SKU001

const param = wire.location.param("product");
```
