Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Get URL parameter with jQuery

Just Consider : I am having the URL and with parameter

www.test.com/t.html?a=1&b=3&c=m2-m3-m4-m5

I just want to get the value of 'c' . I need to get the all value of c

because i just try to read the url but i got only one m2 . But i want all value using Java Script

share|improve this question
5  
it is and it isn't because that question asks for a jquery answer, but the accepted answer is pure JS – annakata Jun 11 '09 at 9:28
3  
This isn't a duplicate, it does not specify jQuery. Although people who find this question would likely benefit from the jQuery question... – Chris Dutrow Sep 3 '12 at 3:31

marked as duplicate by casperOne Jan 5 '12 at 21:10

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

7 Answers

up vote 81 down vote accepted

JavaScript has nothing built in for handling query string parameters.

You could access location.search, which would give you from the ? character on to the end of the fragment identifer (#foo), whichever came first.

This suggests that you have written (or found some third party) code for reading the query string and accessing just the bit that you want - but you haven't shared it with us, so it is hard to say what is wrong with it.

The code I generally use is this:

var QueryString = function () {
  // This function is anonymous, is executed immediately and 
  // the return value is assigned to QueryString!
  var query_string = {};
  var query = window.location.search.substring(1);
  var vars = query.split("&");
  for (var i=0;i<vars.length;i++) {
    var pair = vars[i].split("=");
    	// If first entry with this name
    if (typeof query_string[pair[0]] === "undefined") {
      query_string[pair[0]] = pair[1];
    	// If second entry with this name
    } else if (typeof query_string[pair[0]] === "string") {
      var arr = [ query_string[pair[0]], pair[1] ];
      query_string[pair[0]] = arr;
    	// If third or later entry with this name
    } else {
      query_string[pair[0]].push(pair[1]);
    }
  } 
    return query_string;
} ();

You can then access QueryString.c

share|improve this answer
I believe you mean location.search, but I see in your source that it is correct there. – Blixt Jun 11 '09 at 8:45
Whoops. I write the prose from memory but copied real code for the example. Thanks for spotting that. – Quentin Jun 11 '09 at 9:10
2  
You should URL-decode the names and values. – Ates Goral Jul 8 '09 at 18:57
4  
this algorithm fails if we have a single parameter (no "&" character) – Tom Brito Jul 4 '12 at 19:05
a parameter named "toString" might cause problems, eh? i was just implemented this and had to account for it. – les2 Feb 26 at 17:05

Most implementations I've seen miss out URL-decoding the names and the values.

Here's a general utility function that also does proper URL-decoding:

function getQueryParams(qs) {
    qs = qs.split("+").join(" ");

    var params = {}, tokens,
        re = /[?&]?([^=]+)=([^&]*)/g;

    while (tokens = re.exec(qs)) {
        params[decodeURIComponent(tokens[1])]
            = decodeURIComponent(tokens[2]);
    }

    return params;
}

//var query = getQueryParams(document.location.search);
//alert(query.foo);
share|improve this answer
This code doesn't work. It creates an infinite loop because the regex is compiled in the loop definition which resets the current index. It works properly if you put the regex into a variable outside of the loop. – maxhawkins Jul 6 '11 at 1:22
@maxhawkins: It works in some browsers while it would go into an infinite loop in others. You're half-right in that regard. I will fix the code to be cross-browser. Thanks for pointing that out! – Ates Goral Jul 6 '11 at 5:31
re = /(\?|\&)([^=]+)=([^&]*)/g; and tokens 2 and 3 – ZiTAL Feb 16 '12 at 13:06
@ZiTAL Pardon me? – Ates Goral Feb 16 '12 at 20:24
2  
@ZiTAL This function is to be used with the query part of a URL, not the entire URL. See the commented-out usage example below. – Ates Goral Feb 17 '12 at 16:57
show 2 more comments

i take it from a link

http://www.netlobo.com/url_query_string_javascript.html

function gup( name ){
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");  
var regexS = "[\\?&]"+name+"=([^&#]*)";  
var regex = new RegExp( regexS );  
var results = regex.exec( window.location.href ); 
 if( results == null )    return "";  
else    return results[1];}

The way that the function is used is fairly simple. Let's say you have the following URL:

http://www.foo.com/index.html?bob=123&frank=321&tom=213#top

You want to get the value from the frank parameter so you call the javascript function as follows:

var frank_param = gup( 'frank' );
share|improve this answer
2  
I like this option best, but prefer to return null, or the result, but not an empty string. – Jason Thrasher Nov 5 '10 at 2:53

See this

function getURLParameters(paramName) 
{
        var sURL = window.document.URL.toString();  
    if (sURL.indexOf("?") > 0)
    {
       var arrParams = sURL.split("?");         
       var arrURLParams = arrParams[1].split("&");      
       var arrParamNames = new Array(arrURLParams.length);
       var arrParamValues = new Array(arrURLParams.length);     
       var i = 0;
       for (i=0;i<arrURLParams.length;i++)
       {
        var sParam =  arrURLParams[i].split("=");
        arrParamNames[i] = sParam[0];
        if (sParam[1] != "")
            arrParamValues[i] = unescape(sParam[1]);
        else
            arrParamValues[i] = "No Value";
       }

       for (i=0;i<arrURLParams.length;i++)
       {
                if(arrParamNames[i] == paramName){
            //alert("Param:"+arrParamValues[i]);
                return arrParamValues[i];
             }
       }
       return "No Parameters Found";
    }

}
share|improve this answer

I use the parseUri library available here: http://stevenlevithan.com/demo/parseuri/js/

It allows you to do exactly what you are asking for:

var uri = 'www.test.com/t.html&a=1&b=3&c=m2-m3-m4-m5';
var c = uri.queryKey['c'];
// c = 'm2-m3-m4-m5'
share|improve this answer

Here's a tool I build, prob you want this:

http://jrharshath.qupis.com/urlparser/

You can get its source code from View->Source Code (I'm using IE now :( )

share|improve this answer

You can get the current location in location.href, then you can split everything after the question mark:

var params = {};

if (location.search) {
    var parts = location.search.substring(1).split('&');

    for (var i = 0; i < parts.length; i++) {
        var nv = parts[i].split('=');
        if (!nv[0]) continue;
        params[nv[0]] = nv[1] || true;
    }
}

// Now you can get the parameters you want like so:
var abc = params.abc;
share|improve this answer
location.search is more appropriate – annakata Jun 11 '09 at 9:26
I suppose you're right. I changed my example. – Blixt Jun 11 '09 at 9:50
1  
What about URL-decoding the parameter names and values? – Ates Goral Jul 8 '09 at 18:04

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