Skip to content

Instantly share code, notes, and snippets.

@chrsr
Created July 9, 2014 05:26
Show Gist options
  • Save chrsr/71aa2084d5693c20c3d1 to your computer and use it in GitHub Desktop.
Save chrsr/71aa2084d5693c20c3d1 to your computer and use it in GitHub Desktop.
Get Query Param
function getUrlParam(param) {
return decodeURIComponent(window.location.search.replace(new RegExp("^(?:.*[&\\?]" + encodeURI(param).replace(/[\.\+\*]/g, "\\$&") + "(?:\\=([^&]*))?)?.*$", "i"), "$1"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment