Answers for "querystring (url params"

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
1

get url without query string

window.location.href.split('?')[0]
Posted by: Guest on May-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language