Web/API/URL/searchParams

From Get docs
< Web/API‎ | URL


The searchParams readonly property of the URL interface returns a URLSearchParams object allowing access to the GET decoded query arguments contained in the URL.

Note: This feature is available in Web Workers.

Syntax

const urlSearchParams = url.searchParams

Value

URLSearchParams object.

Examples

If the URL of your page is https://example.com/?name=Jonathan%20Smith&age=18 you could parse out the name and age parameters using:

let params = (new URL(document.location)).searchParams;
let name = params.get('name'); // is the string "Jonathan Smith".
let age = parseInt(params.get('age')); // is the number 18

Specifications

Specification Status Comment
URLThe definition of 'searchParams' in that specification. Living Standard Initial definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
searchParams Chrome

Full support 51

Edge

Full support 17

Firefox

Full support 29

IE

No support No

Opera

Full support 38

Safari

Full support 10

WebView Android

Full support 51

Chrome Android

Full support 51

Firefox Android

Full support 29

Opera Android

Full support 41

Safari iOS

Full support 10

Samsung Internet Android

Full support 5.0

Legend

Full support  
Full support
No support  
No support