Profile
Achievement
Roshambo's Recent SnippetsTagged textmate
- All /
« Prev 1 Next »
Read a page's GET URL variables and return them as an associative array.
----
Example for URL http://www.example.com/index.html?hello=bonjour&goodevening=bonsoir
var hash = getUrlVars();
alert(hash['hello']); // prints 'bonjour'
alert(hash...
35
7926
posted 18 years ago by Roshambo