I was trying to make a JSON Object from a String URL without success
i have this:
var URL = "http://localhost/index.php?module=search¶m1=4";
i need this:
var dir = index.php;
var result = {
module:'search',
param1:4
};
Can anyone help me with the code?
It’s not entirely correct to post a link here, but in this case what OP needed is just some library to parse urls.
And here it is: http://james.padolsey.com/javascript/parsing-urls-with-the-dom/