Skip to content

Instantly share code, notes, and snippets.

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 rniswonger/3d740e54b14f53dd154a27fb9537ed28 to your computer and use it in GitHub Desktop.
Save rniswonger/3d740e54b14f53dd154a27fb9537ed28 to your computer and use it in GitHub Desktop.
// Wes Bos
// https://twitter.com/wesbos/status/766703272887476224
function removeUTM() {
const loc = window.location;
if (loc.search.includes('utm')) {
if (window.history.replaceState) {
history.replaceState({}, '', loc.pathname);
} else {
loc.hash = '';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment