Skip to content

Instantly share code, notes, and snippets.

@mattcarbone
Created May 7, 2012 21:02
Show Gist options
  • Save mattcarbone/2630398 to your computer and use it in GitHub Desktop.
Save mattcarbone/2630398 to your computer and use it in GitHub Desktop.
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1]
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment