Skip to content

Instantly share code, notes, and snippets.

@pmkhoa
Forked from samny/jquery.deparam.js
Created July 28, 2017 22:21
Show Gist options
  • Save pmkhoa/df33fa29097230bc89091c6a6070f570 to your computer and use it in GitHub Desktop.
Save pmkhoa/df33fa29097230bc89091c6a6070f570 to your computer and use it in GitHub Desktop.
jQuery.deparam - The oposite of jQuery param. Creates an object of query string parameters
/**
* jQuery.deparam - The oposite of jQuery param. Creates an object of query string parameters.
*
* Credits for the idea and Regex:
* http://stevenbenner.com/2010/03/javascript-regex-trick-parse-a-query-string-into-an-object/
*/
(function($){
$.deparam = $.deparam || function(uri){
if(uri === undefined){
uri = window.location.search;
}
var queryString = {};
uri.replace(
new RegExp(
"([^?=&]+)(=([^&#]*))?", "g"),
function($0, $1, $2, $3) { queryString[$1] = $3; }
);
return queryString;
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment