I am new to Adobe analytics. I have a task to rerecord the link click event in the page and at the same time send the clicked data such as link href etc, to adobe analytics debugger platform. I have used _satellite.track("eventName") to track the event , however , the platform only shows the pageload data . So I suppose to have two events logged , first is the original page where I trigger the event , second is the navigated page where the action is leading to . I have no idea where is wrong . [enter image description here][1] , also this is my sample code :
digitalData.events.eventName="navigationInteraction"; digitalData.events.navigationInteraction['navName'] = "navi name"; digitalData.events.navigationInteraction['navLink'] = "navi link"; digitalData.events[digitalData.events.eventName] = value; _satellite.track( digitalData.events.eventName);
the expected outcome should be clicked event log from original page and the navigated page in the second [1]: https://i.stack.imgur.com/IumLY.jpg