Button click is firing but not able to capture
Hi guys,
I'm using Adobe Client Data Layer as Event, so once the event is clicked the rule will be firing.
And I'm using the below code to set my variables. then Send Beacon then send variables, It gets fired in the console but im not able to see the firing in my debugger I'm using Omnibug.
s.linkTrackVars = "products,eVar7,eVar15,eVar3,prop1,prop29,prop30,eVar29,eVar31,prop31,eVar32,eVar33,eVar28";
s.linkTrackEvents = "scAdd,scView,scOpen,event12,event17";
s.events="scAdd,scView,scOpen,event12"
if(s.pageName) s.getPageLoadTime();
if(s._pltPreviousPage)
{
if (s.events == "undefined")
{
s.events = "event17=" + s._pltLoadTime;
}
else
{
s.events = s.apl(s.events,"event17="+s._pltLoadTime);
}
}
s.eVar3 = s.prop1 = _satellite.getVar('visitorID');
s.prop29 = s._pltLoadTime;
s.prop30 = s._pltPreviousPage;
s.eVar29 = s.prop30;
s.eVar31 = s.getVisitDuration();
s.prop31 = s.eVar31;
s.eVar32 = s.getVisitNum();
s.eVar33 = getTimeParting("America/New_York");
s.eVar28 = s.getTimeSinceLastVisit();
s.eVar7 =_satellite.cookie.get('emailHashed');
var status =_satellite.cookie.get('Login Status');
if(status != undefined)
{
s.eVar15 =_satellite.cookie.get('Login Status');
}
else
{
s.eVar15 = "Guest";
}
var discountPrice = $(".discountedPrice").text().slice(1).trim();
s.products = ";" + event.message.eventInfo["xdm:SKU"] + ";"+ event.message.eventInfo["xdm:quantity"] +";" + discountPrice;
console.log(s.products);




