Freelancercafe

Friday, May 18th

Last update05:06:15 AM GMT

You are here: Typography The News Javascript Query String

Javascript Query String

E-mail Print PDF

To get query string using Javascript. We use the window.location.search element of javascript to get the query string and store it into a variable.

hu = window.location.search.substring(1);

document.write(hu);


-We create a variable hu
-Built-in Javascript properties: window.location is the entire url. search.substring(1) is the part after the question mark.
-We write the value of hu to the browser.
Below is a function that will break the query string into pieces for you:
Just Copy and Paste Javascript Code:

function querySt(ji) {
hu = window.location.search.substring(1);
gy = hu.split("&");
for (i=0;ift = gy[i].split("=");
if (ft[0] == ji) {
return ft[1];
}
}
}

var koko = querySt("koko");

document.write(koko);
document.write("
");
document.write(hu);