Log in
04
March

Here’s a small javascript helper to read Url Query String Parameters.

function GetUrlParams()
{
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?')
+ 1).split('&');

for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}

The above function, will read the url, get the query string part i.e from (”?”) and split each paramter by the (”=”) character and [...]