/ Published in: JavaScript
                    
                                        
Example URL:
http://www.example.com/index.php?id=1&image=awesome.jpg
getQueryVariable(â€idâ€) – would return “1″.
Calling getQueryVariable(â€imageâ€) – would return “awesome.jpgâ€.
                http://www.example.com/index.php?id=1&image=awesome.jpg
getQueryVariable(â€idâ€) – would return “1″.
Calling getQueryVariable(â€imageâ€) – would return “awesome.jpgâ€.
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
function getQueryVariable(variable)
{
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if(pair[0] == variable){return pair[1];}
}
return(false);
}
URL: http://css-tricks.com/snippets/javascript/get-url-variables/
Comments
 Subscribe to comments
                    Subscribe to comments
                
                