Hi,
How can I check if the query string contains a q= in it using javascript/jquery?
|
1
|
Hi, How can I check if the query string contains a q= in it using javascript/jquery?
|
||
|
|
|
|
|
||||||||||||||||
|
|
|
You could also use a regular expression:
|
||
|
|
|
|
I've used this library before which does a pretty good job of what you're after. Specifically:-
|
||
|
|
|
|
The plain javascript code sample which answers your question literally:
The plain javascript code sample which attempts to find if the q parameter exists and if it has a value:
|
||
|
|
|
|
|
||||
|