Answers for "how to get the params of a url in javascript"

29

get parameter from the actual url javascript

// https://testsite.com/users?page=10&pagesize=25&order=asc
const urlParams = new URLSearchParams(window.location.search);
const pageSize = urlParams.get('pageSize');
Posted by: Guest on December-04-2020
1

get url query params js

const urlParams = new URLSearchParams(window.location.search);
const myParam = urlParams.get('myParam');
Posted by: Guest on July-26-2020

Code answers related to "how to get the params of a url in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language