jquery read query string

Solutions on MaxInterview for jquery read query string by the best coders in the world

showing results for - "jquery read query string"
María Fernanda
21 Jun 2018
1// Read a page's GET URL variables and return them as an associative array.
2function getUrlVars()
3{
4    var vars = [], hash;
5    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
6    for(var i = 0; i < hashes.length; i++)
7    {
8        hash = hashes[i].split('=');
9        vars.push(hash[0]);
10        vars[hash[0]] = hash[1];
11    }
12    return vars;
13}
14