Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Created July 24, 2013 10:45
Show Gist options
  • Save annalinneajohansson/6069579 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/6069579 to your computer and use it in GitHub Desktop.
Get url parameters by name (javascript)
function getUrlParameter(a) {
a = a.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
a = RegExp("[\\?&]" + a + "=([^&#]*)").exec(location.search);
return null === a ? "" : decodeURIComponent(a[1].replace(/\+/g, " "))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment