Posted by: adnanrashid on: March 4, 2009
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(‘=’);
[...]