Skip to content

Instantly share code, notes, and snippets.

@pwlin
Created May 29, 2010 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pwlin/418224 to your computer and use it in GitHub Desktop.
Save pwlin/418224 to your computer and use it in GitHub Desktop.
function urlParam(name, _default) {
name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]")
var regexS = "[\\?&]" + name + "=([^&#]*)"
var regex = new RegExp(regexS)
var results = regex.exec(window.location.href)
if (results == null) {
return _default
}
else {
return results[1]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment