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
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
<script> | |
/* jQuery is required for this script. | |
*/ | |
/// load jQuery in no-conflict mode | |
jQuery.noConflict(); | |
(function($) { | |
/// dom ready | |
$(function() { | |
$('body').on('click', function(e){ |
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
// Script to persists the listed querystring parameters across the length of the session. | |
(function() { | |
var domainsToDecorate = [ | |
'exampledomain.com' //add or remove domains (without https or trailing slash) | |
], | |
queryParams = [ | |
'utm_medium', //add or remove query parameters you want to transfer | |
'utm_source', | |
'utm_campaign', | |
'utm_adgroup', |
OlderNewer