Skip to content

Instantly share code, notes, and snippets.

@emulsion-io
Created July 20, 2015 09:53
Show Gist options
  • Save emulsion-io/9df3479832c7698fff13 to your computer and use it in GitHub Desktop.
Save emulsion-io/9df3479832c7698fff13 to your computer and use it in GitHub Desktop.
Récupère les paramètres d'une URL en javascript.
function getUrlParam(name) {
var results = new RegExp('[\\?&]' + name + '=([^]*)').exec(window.location.href);
return (results && results[1]) || undefined;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment