Skip to content

Instantly share code, notes, and snippets.

@qborreda
Created March 17, 2014 10:33
Show Gist options
  • Save qborreda/9597099 to your computer and use it in GitHub Desktop.
Save qborreda/9597099 to your computer and use it in GitHub Desktop.
getQueryParameters get url params from javascript
/*
* getQueryParameters.js
* Copyright (c) 2014 Nicholas Ortenzio
* The MIT License (MIT)
*
*/
window.getQueryParameters = function(str) {
return (str || document.location.search).replace(/(^\?)/, '').split("&").map(function(n) {
return n = n.split("="), this[n[0]] = n[1], this
}.bind({}))[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment