Created
August 12, 2016 01:46
-
-
Save Jaballadares/507568b1a0476a51329a9cda239f253b to your computer and use it in GitHub Desktop.
Tracking Salesforce UTM Paramaters across pages
This file contains 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
(function () { | |
function getParameterByName(name, url) { | |
if (!url) url = window.location.href; | |
name = name.replace(/[\[\]]/g, "\\$&"); | |
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), | |
results = regex.exec(url); | |
if (!results) return null; | |
if (!results[2]) return ''; | |
return decodeURIComponent(results[2].replace(/\+/g, " ")); | |
} | |
var campaignId = getParameterByName('C_SFDCLastCampaignID'); | |
if (campaignId) { | |
localStorage.setItem('C_SFDCLastCampaignID', campaignId); | |
} else { | |
campaignId = localStorage.getItem('C_SFDCLastCampaignID'); | |
} | |
if (campaignId) { | |
var C_SFDCLastCampaignIDFields = document.getElementsByClassName('C_SFDCLastCampaignID'); | |
if (C_SFDCLastCampaignIDFields.length) { | |
Array.prototype.forEach.call(C_SFDCLastCampaignIDFields, function (field) { | |
field.value = campaignId; | |
}); | |
} | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment