Skip to content

Instantly share code, notes, and snippets.

@cdmz
Created January 17, 2016 18:11
Show Gist options
  • Save cdmz/c7d6dd117cf6a8ff87ca to your computer and use it in GitHub Desktop.
Save cdmz/c7d6dd117cf6a8ff87ca to your computer and use it in GitHub Desktop.
get param url javascript
function getParam(url, param){
if (typeof url != 'string' || typeof param != 'string'){
return;
}
var regex = new RegExp('[\\?&]' + param + '=' + '(.+?)([&#]|$)', 'i');
return (value = (regex.exec(window.location.href)||[,null])[1])
? decodeURIComponent(value)
: null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment