Skip to content

Instantly share code, notes, and snippets.

@kenmasters
Last active December 7, 2017 02:04
Show Gist options
  • Save kenmasters/03c2a1800e55ea951a93e57e4bcd22ea to your computer and use it in GitHub Desktop.
Save kenmasters/03c2a1800e55ea951a93e57e4bcd22ea to your computer and use it in GitHub Desktop.
function getUrlParameter(name) {
name = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]');
var regex = new RegExp('[\\?&]' + name + '=([^&#]*)');
var results = regex.exec(location.search);
return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' '));
};
Reference: https://davidwalsh.name/query-string-javascript
How to use ?
// Assuming "?post=1234&action=edit"
getUrlParameter('post'); // "1234"
getUrlParameter('action'); // "edit"
Another function:
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment