What is the best way to retrieve specific name/value pairs in Javascript from the Querystring?
For example if the url is "http://www.mycompany.com/customer/orders.aspx?id=1&name=john&address=main"
and I need the value for the id say.
Ideally I am looking for either a jQuery or else non-library solution (i.e. raw Javascript).
Thanks.