I was asked to get the value of a giving query string name through JavaScript. The following is the function I created to return the value of a specific query string.
function QueryString(name)
{
url = window.location.search.substring(1);
param = url.split("&");
for (i=0;i<param.length;i++)
{
value = param[i].split("=");
if (value[0] == name)
{
return this.unescape(value[1]);
}
}
}
541e04c2-3763-4d37-8e86-4be1f9382371|3|4.7