setting s.evar in custom code does not work
I am trying to set an eVar using custom code in Launch through the Analytics Extension. So far, nothing is working, no matter how I try to set it. I see the data that I want in the console, so I know I am receiving it correctly. Is there something I need to do differently or include? I see the test string for the link track as well...
console.log("%c ******", "color: red; font-size: 20px");
_satellite.logger.log(event.element.getAttribute('data-acid'));
let evarValue = event.element.getAttribute('data-acid') || "No Data Written";
_satellite.logger.log(evarValue);
// s.linkTrackVars = "eVar87";
s.eVar87=evarValue;
s.tl(this,'o','Link Track in JS v2 Test')