Skip to content

Instantly share code, notes, and snippets.

@MrUzu
Created July 29, 2011 14:18
Show Gist options
  • Save MrUzu/1113886 to your computer and use it in GitHub Desktop.
Save MrUzu/1113886 to your computer and use it in GitHub Desktop.
jQuery snippet : getURIVars
$.extend({
getURIVars: function( uri ){
var vars = {};
var parts = uri.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value) {
vars[key] = value;
});
return vars;
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment