JavaScript query string
- by Chris
Is there any JavaScript library that makes a dictionary out of the query string, ASP.NET style?
Something that would be used like:
var query = window.location.querystring["query"]?
Is a "query string" called something else outside the .NET realm? Why isn't location.search broken into a key/value collection already?
EDIT: I have written my own function, thanks, but does any major JavaScript library do this?