Is there a way to extract the current querystring values using mootools?
I have implemented mootools ajax for php pagination. The initial call includes the following parameters:
format=html&nolayout=true&p[0]=1000-1500&p[1]=1500-2000&p[2]=2000-2500
For the second ajax call, I need to maintain all the above parameters and add an additional parameter like this:
format=html&nolayout=true&p[0]=1000-1500&p[1]=1500-2000&p[2]=2000-2500&pagenum=1
If anyone could offer assistance on how to accomplish this, it would be greatly appreciated.