Answers for "get the value of a parameter in the url in javascript"

41

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
11

js get url parameter

const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const code = urlParams.get('code')
Posted by: Guest on October-18-2020

Code answers related to "get the value of a parameter in the url in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language