Skip to content

Instantly share code, notes, and snippets.

@kkoziarski
Created November 28, 2014 10:50
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 kkoziarski/be5a934ee3fe0c27497c to your computer and use it in GitHub Desktop.
Save kkoziarski/be5a934ee3fe0c27497c to your computer and use it in GitHub Desktop.
Get query string by name
// HELPERS (all kinds and types)
// Function for getting request query string params
// Source: http://stackoverflow.com/questions/901115/get-querystring-values-with-jquery
function getQueryStringByName(name) {
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)");
var results = regex.exec(window.location.href);
if (results == null)
return null;
else
return decodeURIComponent(results[1].replace(/\+/g, " "));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment