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;i
if (ft[0] == ji) {
return ft[1];
}
}
}
var koko = querySt("koko");
document.write(koko);
document.write("
");
document.write(hu);



