Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bobchao/50b0264c899f674402d6 to your computer and use it in GitHub Desktop.
Save bobchao/50b0264c899f674402d6 to your computer and use it in GitHub Desktop.
/*
Call stripGALinkerParm() after ga('send', 'pageview');
No rights reserved.
*/
function stripGALinkerParm(){
var _qs = window.location.search,
_path = window.location.pathname;
_qs = _qs.replace(/_ga=[^&]*&?/, "");
if (_qs!="?") _path += _qs;
history.replaceState({}, "", _path+window.location.hash);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment