The best way I've found is to just do it myself and direct the params to a global key / value object.
Getting quer options is just ...
just take a pair of .split () '
var myquery = thewholeurl.split("?")[1]; //will get the whole querystring with the ?
then you can do
myparams = myquery.split ("&")
then you can do
for each param in myparams { temp = param.split("="); mykeys.push(temp[0]); myvalues.push(temp[1]); OR myObject[temp[0]] = temp[1]; }
It is just a matter of style.
This is not perfect code, just psuedo stuff to give you this idea.
M. ryan
source share