Answers for "check query parameter current url"

6

get url query params js

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

get url params with js

const queryString = window.location.search;

const urlParams = new URLSearchParams(queryString);

const page_type = urlParams.get('page_type')

console.log(page_type);
Posted by: Guest on August-08-2021

Code answers related to "check query parameter current url"

Code answers related to "Javascript"

Browse Popular Code Answers by Language