Answers for "how to get query in javascript"

12

js get query param

const queryString = window.location.search;
const parameters = new URLSearchParams(queryString);
const value = parameters.get('key');
Posted by: Guest on June-25-2020
0

how to get query data using javascript

var urlParams;
(window.onpopstate = function () {
    var match,
        pl     = /\+/g,  // Regex for replacing addition symbol with a space
        search = /([^&=]+)=?([^&]*)/g,
        decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
        query  = window.location.search.substring(1);
  
    urlParams = {};
    while (match = search.exec(query))
       urlParams[decode(match[1])] = decode(match[2]);
})();
Posted by: Guest on December-07-2021

Code answers related to "how to get query in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language