« Blog Home

§ Handling url get string with javascript

Using javascript to handle url get string variables

This will find the value of a get variable and return it.  If it is not found it returns false.

 


function getGetValue(getName) {
  var getString = window.location.search.substring(1);
  var getArray = getString.split("&");
  var getNameValue;
  for(var i=0;i<getArray.length;i++) {
    getNameValue = getArray[i].split("=");
    if(getNameValue[0]==getName)
      return getNameValue[1];
  }
  return false;
}
 

 

last edited on February 14th, 2009 at 12:21 AM

Comments

No Comments Here. Add yours below!

Add your comment

Name:
Email: (Will not be displayed - Privacy policy)
Website:
Comments:
  random image I can't read it!
Give me a different one!
Verify Post: Input the text from the image above to verify this post (helps prevent spam)
 

« Blog Home


“...I may be completely off base, and panicking prematurely.”
“I don’t think so.  I think you’re panicking post-maturely.  In fact, if you were panicking any later it would be practically posthumously.  I’ve been panicking for days.”
Miles & Ivan, Cetaganda, Lois McMaster Bujold