Skip to content

Instantly share code, notes, and snippets.

@AaronFlower
Created December 19, 2017 08:38
Show Gist options
  • Save AaronFlower/a386f6553176e30df6e0863b7d17e309 to your computer and use it in GitHub Desktop.
Save AaronFlower/a386f6553176e30df6e0863b7d17e309 to your computer and use it in GitHub Desktop.
window location search params
var queryItems = {}
window.location.search.replace(/[?&]([^=]+)=([^=&]+)/g, function (_, key, value) {
queryItems[key] = value
})
console.log(queryItems)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment