How do I simply get GET and POST values with JQuery?
What I want to do is something like this:
$('#container-1 > ul').tabs().tabs('select', $_GET('selectedTabIndex'));
|
How do I simply get GET and POST values with JQuery? What I want to do is something like this:
|
||||
|
|
|
For GET parameters, you can grab them from
For POST parameters, you can serialize the
While you're at it (doing things on server side), you might collect the GET parameters on PHP as well:
Note: You'll need PHP version 5 or higher to use the built-in Update: Here's a more generic implementation:
|
|||||||||||||||
|
|
There's a plugin for jQuery to get GET params called .getUrlParams For POST the only solution is echoing the POST into a javascript variable using PHP, like Moran suggested. |
|||
|
|
|
Or you can use this one http://plugins.jquery.com/project/parseQuery, it's smaller than most (minified 449 bytes), returns an object representing name-value pairs. |
|||
|
|
|
With any server-side language, you will have to emit the POST variables into javascript. .NET
Just be careful of empty values. If the variable you attempt to emit is actually empty, you will get a javascript syntax error. If you know it's a string, you should wrap it in quotes. If it's an integer, you may want to test to see if it actually exists before writing the line to javascript. |
|||
|
|
|
Thanks for all your replies, how varied! I also found this which did the trick: http://scripts.franciscocharrua.com/javascript-get-variables.php |
|||||
|
|
You can try Query String Object plugin for jQuery. |
|||
|
|
|
Here's something to gather all the
Example usage:
Hope this helps. ;) |
||||
|
|
|
jQuery plugins seem nice but what I needed is a quick js function to parse the get params. Here is what I have found. |
|||
|
|
|
why not use good old PHP? for example, let us say we receive a GET parameter 'target':
|
|||
|
|
|
?> var bid = ''; //alert(bid); uncomment to check $("#img").load("/php/inc/whatevere.php",{'bid': bid}); } ?> put into your jquery script,will be executed if $_GET['bid'] is filled with something.. Be sure to secure it before use! edit:php kode got stripped :/ you fix.. |
|||
|
|
|
Just for the record, I wanted to know the answer to this question, so I used a PHP method:
That way all my javascript/jquery that runs after this can access everything in the jGets. Its an nice elegant solution I feel. |
|||
|
|