steveosoule
12/2/2014 - 12:17 AM

JavaScript - Remove UTM parameters

JavaScript - Remove UTM parameters

// FROM: http://davidwalsh.name/remove-utm-parameters-urls
(function() {
    var win = window;
    var removeUtms = function(){
        var location = win.location;
        if (location.search.indexOf('utm_') != -1 && history.replaceState) {
            history.replaceState({}, '', window.location.toString().replace(/(\&)utm([_a-z0-9=]+)/g, ""));
        }
    };
    ga('send', 'pageview', { 'hitCallback': removeUtms });
})();