Quick Search:
 
 JavaScript: Get Query String with Javascript Jump to:  
Category: >> JavaScript >> Get Query String with Javascript  

<< lastnext >>

Snippet Name: Get Query String with Javascript

Description: It is possible to get the query string from your forms when your form method is set to 'GET'.

You can call the getQuery() method the following way:

//if the query string is: http://yoursite.com/myform?variable1=true
//mysubmission should be equal to true
var mysubmission = getQuery("variable1");
alert(mysubmission)

Comment: (none)

Language: JAVASCRIPT
Highlight Mode: JAVASCRIPT
Last Modified: February 27th, 2009

<script type="text/Javascript">
FUNCTION getQuery(thisVariable) {
 theQueryString = window.location.search.substring(1);
 variableArray = theQueryString.split("&");
 FOR (i=0; i < variableArray.length; i++) {
  variableRetrieved = variableArray[i].split("=");
  IF (variableRetrieved[0] == thisVariable) {
   RETURN variableRetrieved[1];
  }
 }
}
</script>
 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org