Skip to content

Instantly share code, notes, and snippets.

@mortenjust
Created April 20, 2012 14:33
Show Gist options
  • Save mortenjust/2429111 to your computer and use it in GitHub Desktop.
Save mortenjust/2429111 to your computer and use it in GitHub Desktop.
function getParameterByName(url, name) {
var match = RegExp('[?&]' + name + '=([^&]*)').exec(url);
return match?decodeURIComponent(match[1].replace(/\+/g, ' ')):null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment