Skip to content

Instantly share code, notes, and snippets.

@fredriccliver
Created January 12, 2021 07:58
Show Gist options
  • Save fredriccliver/b28107abdecc316a25caa0d7697a0c07 to your computer and use it in GitHub Desktop.
Save fredriccliver/b28107abdecc316a25caa0d7697a0c07 to your computer and use it in GitHub Desktop.
const updateUrlParams = () => {
const currentLocale = 'en-GB'
var url = new URL(window.location.href)
// searchParam : https://usefulangle.com/post/81/javascript-change-url-parameters
url.searchParams.set('lang', currentLocale)
// pushState : https://developer.mozilla.org/en-US/docs/Web/API/History/pushState
window.history.pushState({},'',url.href)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment