Skip to content

Instantly share code, notes, and snippets.

@jakelacey2012
Created November 27, 2017 20:44
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 jakelacey2012/e29f180d991068a644839a81affd28b9 to your computer and use it in GitHub Desktop.
Save jakelacey2012/e29f180d991068a644839a81affd28b9 to your computer and use it in GitHub Desktop.
if ('URLSearchParams' in window) {
var searchParams = new URLSearchParams(window.location.search);
searchParams.set("foo", "bar");
var newRelativePathQuery = window.location.pathname + '?' + searchParams.toString();
history.pushState(null, '', newRelativePathQuery);
}
for (let n of searchParams.entries()) {
console.log(n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment