Hi all, We had a tech who is no longer here install a JQuery action to encrypt the userID collected from the log-in box on our site. I have searched DTM, the source code of our website and in Analytics and can't for the life of me find where this snippet of code lives. I've looked in DTM under the userID rules and even in the custom code editors for the each rules and the entire library.
Looking at the source code of my site, I can find the code listed under the analytics.js file. When opening this file I find the code written as
// user > acountName and userId
jQuery('#login-button').click(function() {
digitalData.user.accountName = jQuery('#login-select option:selected').text();
var userId = md5(jQuery('#login-username').val()).toUpperCase();
digitalData.user.userId = userId
if (debug) console.debug(userId);
_satellite.track("login");
Can anyone help and at least point me in a direction to search for it?
Best,
Scott
Solved! Go to Solution.
Views
Replies
Total Likes
Assuming your rules reference a data element, the code could be inside the data element where the User ID is picked from the page and then encrypted.
Views
Replies
Total Likes
Hi,
The source of that function could be anywhere, it seems its the javascript md5 library, If you've search all your local scripts and can't find "md5" then its probably loaded by url (md5.min.*) or hard coded in DTM. Trying using chrome dev tools to find it, if all else fails, send me the link and I'll locate it for you.
Views
Replies
Total Likes
Assuming your rules reference a data element, the code could be inside the data element where the User ID is picked from the page and then encrypted.
Views
Replies
Total Likes
Thank you for all the help. I will look in your suggested places and may take you up on the offer if I can't find it myself.
Best,
Scott
Views
Replies
Total Likes
Thank you for the assistance. I will look for it there.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies