Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to extract the query string from the URL in javascript?

Thank you!

share|improve this question

4 Answers

up vote 11 down vote accepted

You can easily build a dictionary style collection...

function getQueryStrings() { 
  var assoc  = {};
  var decode = function (s) { return decodeURIComponent(s.replace(/\+/g, " ")); };
  var queryString = location.search.substring(1); 
  var keyValues = queryString.split('&'); 

  for(var i in keyValues) { 
    var key = keyValues[i].split('=');
    if (key.length > 1) {
      assoc[decode(key[0])] = decode(key[1]);
    }
  } 

  return assoc; 
} 

And use it like this...

var qs = getQueryStrings();
var myParam = qs["myParam"]; 
share|improve this answer
Thanks You, it should work! :) – Jayesh May 26 '10 at 8:07
I hope you don't mind, I edited your answer. unescape is deprecated and should be replaced with decodeURIComponent, you shouldn't decode the full search string because it will decode encoded ampersands or equals in the parameters e.g. ?test=fish%26chips. Also, I improved it to correctly decode + into a space. See my answer to a similar question here – Andy E Jul 1 '10 at 10:54
1  
@Andy No, I don't mind at all! I agree with you. It would have handled basic query strings just fine, but now this is a more complete answer. – Josh Stodola Jul 1 '10 at 13:11
1  
It says: Uncaught SyntaxError: Invalid regular expression: /+/: Nothing to repeat, should I care? – Tom Brito Sep 20 '10 at 17:38
@Tom Yes that is an error that needs to be fixed (It is @Andy E's fault :P) I've updated the answer to be correct. – Josh Stodola Sep 20 '10 at 19:01
show 2 more comments

If you're referring to the URL in the address bar, then

window.location.search

will give you just the query string part. Note that this includes the question mark at the beginning.

If you're referring to any random URL stored in (e.g.) a string, you can get at the query string by taking a substring beginning at the index of the first question mark by doing something like:

url.substring(url.indexOf("?"))

That assumes that any question marks in the fragment part of the URL have been properly encoded. If there's a target at the end (i.e., a # followed by the id of a DOM element) it'll include that too.

share|improve this answer

Here's the method I use...

function Querystring() {
    var q = window.location.search.substr(1), qs = {};
    if (q.length) {
        var keys = q.split("&"), k, kv, key, val, v;
        for (k = keys.length; k--; ) {
            kv = keys[k].split("=");
            key = kv[0];
            val = decodeURIComponent(kv[1]);
            if (qs[key] === undefined) {
                qs[key] = val;
            } else {
                v = qs[key];
                if (v.constructor != Array) {
                    qs[key] = [];
                    qs[key].push(v);
                }
                qs[key].push(val);
            }
        }
    }
    return qs;
}

It returns an object of strings and arrays and seems to work quite well. (Strings for single keys, arrays for the same key with multiple values.)

share|improve this answer

Another possibility is using the jQuery QueryString plugin. It provides easy ways to access values and even create a new querystring.

share|improve this answer
The repository is currently offline for maintenance. – Kees C. Bakker Dec 23 '11 at 10:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.