Answers for "get url without query params js"

2

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 without query string

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

Browse Popular Code Answers by Language