Answers for "javascrip parse url and get the parameters"

9

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
0

how to get parameter url js

// Example URL: https://example.com/over/there?name=ferret
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const parameter_name = urlParams.get('name')
console.log(parameter_name);
Posted by: Guest on August-25-2021

Code answers related to "javascrip parse url and get the parameters"

Code answers related to "Javascript"

Browse Popular Code Answers by Language