Skip to content

Instantly share code, notes, and snippets.

@TastyToast
Created January 3, 2013 19:26
Show Gist options
  • Save TastyToast/4446264 to your computer and use it in GitHub Desktop.
Save TastyToast/4446264 to your computer and use it in GitHub Desktop.
Get a pram from url
function getParameterByName(name) {
var match = RegExp('[?&]' + name + '=([^&]*)').exec(window.location.search);
return match && decodeURIComponent(match[1].replace(/\+/g, ' '));
}
// Useful for a url like www.iframe.com/93493434?pram_name=2323
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment