Answers for "how to add url parameters in javascript"

-1

js add params to url

function setQueryStringParameter(name, value) {
    const params = new URLSearchParams(window.location.search);
    params.set(name, value);
    window.history.replaceState({}, "", decodeURIComponent(`${window.location.pathname}?${params}`));
}
Posted by: Guest on March-10-2021
2

javascript set query parameter

function updateQueryStringParameter(uri, key, value) {
  var re = new RegExp("([?&])" + key + "=.*?(&|$)", "i");
  var separator = uri.indexOf('?') !== -1 ? "&" : "?";
  if (uri.match(re)) {
    return uri.replace(re, '$1' + key + "=" + value + '$2');
  }
  else {
    return uri + separator + key + "=" + value;
  }
}
//You can reload the url like so
 var newUrl=updateQueryStringParameter(window.location.href,"some_param","replaceValue");
 window.history.pushState("", "Page Title Here", newUrl);
Posted by: Guest on July-17-2019
0

javascript create url with parameters

// URL w/ PARAMETERS
let origin = "https://www.google.com"
let pathname =  "/search"
let query = "?q=javascript%20create%20url%20with%20parameters"

let url = origin + pathname + query

console.log(url);
Posted by: Guest on July-17-2021

Code answers related to "how to add url parameters in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language