Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9197043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:59:07+00:00 2026-06-17T21:59:07+00:00

Possible Duplicate: How can I get query string values? Convert URL parameters to a

  • 0

Possible Duplicate:
How can I get query string values?
Convert URL parameters to a javascript object

In my application, there is a page where I need to retrieve the page url (from the browser) and then extract all the query parameters from it.

Is there a quick way to do that ? I will prefer not using a jQuery plugin since it is not easy to comprehend and makes the application dependent on the plugin.

I know, I am asking 2 questions in one but is there a way to store them in a Set so that it can be accessed as a list of key-value pairs ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T21:59:08+00:00Added an answer on June 17, 2026 at 9:59 pm

    As quoted from the second answer in the other post – https://stackoverflow.com/a/2880929/1236019

    var urlParams = {};
    (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);
    
        while (match = search.exec(query))
           urlParams[decode(match[1])] = decode(match[2]);
    })();
    

    Example querystring:

       ?i=main&mode=front&sid=de8d49b78a85a322c4155015fdce22c4&enc=+Hello%20&empty
    

    Result:

    urlParams = {
        enc: " Hello ",
        i: "main",
        mode: "front",
        sid: "de8d49b78a85a322c4155015fdce22c4",
        empty: ""
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Get query string values in JavaScript how can i get the get
Possible Duplicate: Get query string values in JavaScript Say if,i've a URL like this
Possible Duplicate: How can I get query string values? how can I get the
Possible Duplicate: Get query string values in JavaScript I had this pattern but it
Possible Duplicate: How can I get query string values? Lets say, we have a
Possible Duplicates: JavaScript query string get querystring with jQuery Is there an object/method in
Possible Duplicate: How can I get query string values? I am trying to get
Possible Duplicate: Get query string values in JavaScript Parse query string in JavaScript http://www.example.org/search?q=example&another=test&again=more
Possible Duplicate: How can I get query string values? I have the following querystring:
Possible Duplicate: Get entire URL, including query string and anchor I have my url

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.