vote up 2 vote down star
1

Hi,

How can I check if the query string contains a q= in it using javascript/jquery?

flag

43% accept rate

5 Answers

vote up 5 vote down check
var field = 'q';
var url = window.location.href;
if(url.indexOf('?' + field + '=') != -1)
    return true;
else if(url.indexOf('&' + field + '=') != -1)
    return true;
return false
link|flag
Did you mean '?' + field + '='? – Joel Potter Aug 21 at 21:56
You're right, changing, thanks for noticing – LorenVS Aug 21 at 21:59
1  
Ugly code. Multiple return paths, non-strict comparison operators... – J-P Aug 21 at 22:11
2  
Multiple return paths is a personal choice, I use them because I think they lead to cleaner code, since they help me avoid nested if statements and show exactly what is going on at a certain point in code. As for the stict cases, both the left hand and right hand sides will always be numbers, so what difference would switching to strict equality operators make? – LorenVS Aug 21 at 22:17
1  
Cleaner code? ... Why not just return the indexOf test, instead of placing it in a totally useless preliminary IF statement. – J-P Aug 21 at 23:09
show 3 more comments
vote up 3 vote down

You could also use a regular expression:

/[?&]q=/.test(location.href)
link|flag
vote up 0 vote down

I've used this library before which does a pretty good job of what you're after. Specifically:-

qs.contains(name)
    Returns true if the querystring has a parameter name, else false.

    if (qs2.contains("name1")){ alert(qs2.get("name1"));}
link|flag
vote up 0 vote down

The plain javascript code sample which answers your question literally:

return location.search.indexOf('q=')>=0;

The plain javascript code sample which attempts to find if the q parameter exists and if it has a value:

var queryString=location.search;
var params=q.substring(1).split('&');
for(var i=0; i<params.length; i++){
    var pair=params[i].split('=');
    if(decodeURIComponent(pair[0])=='q' && pair[1])
    	return true;
}
return false;
link|flag
vote up -1 vote down
location.search.indexOf("q=") != -1
link|flag
1  
This will return true for values like "&otherq=". – Joel Potter Aug 21 at 22:08

Your Answer

Get an OpenID
or

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