Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created May 6, 2015 08:09
Show Gist options
  • Save oguzhanaslan/57e4e7a7f7e60aa6a8a4 to your computer and use it in GitHub Desktop.
Save oguzhanaslan/57e4e7a7f7e60aa6a8a4 to your computer and use it in GitHub Desktop.
geturlparameters.js
function GetURLParameter(sParam)
{
var sPageURL = window.location.search.substring(1);
var sURLVariables = sPageURL.split('&');
for (var i = 0; i < sURLVariables.length; i++)
{
var sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] == sParam)
{
return sParameterName[1];
}
}
}​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment