Created
November 27, 2017 20:44
-
-
Save jakelacey2012/e29f180d991068a644839a81affd28b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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