Skip to content

Instantly share code, notes, and snippets.

@temsool
Created December 29, 2022 08:53
Show Gist options
  • Save temsool/3913ed8430317abc4ec449babaee815b to your computer and use it in GitHub Desktop.
Save temsool/3913ed8430317abc4ec449babaee815b to your computer and use it in GitHub Desktop.
Get URL parameters in jQuery
//https://stackoverflow.com/a/26744533/861265
function getURLParams(url){
var p={};
url.replace(/[?&]+([^=&]+)=([^&]*)/gi,function(s,k,v){p[k]=v})
return p;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment