This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2018.
Note: This feature is available in Web Workers.
The get() method of the URLSearchParams interface returns the first value associated to the given search parameter.
get(name)
nameThe name of the parameter to return.
A string if the given search parameter is found; otherwise, null.
If the URL of your page is https://example.com/?name=Jonathan&age=18 you could parse out the 'name' and 'age' parameters using:
let params = new URLSearchParams(document.location.search);
let name = params.get("name"); // is the string "Jonathan"
let age = parseInt(params.get("age"), 10); // is the number 18
Requesting a parameter that isn't present in the query string will return null:
let address = params.get("address"); // null
| Specification |
|---|
| URL> # dom-urlsearchparams-get> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
get |
49 | 17 | 29 | 36 | 10.1 | 49 | 29 | 36 | 10.3 | 5.0 | 49 | 10.3 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/get