Hi,
newbie to AEP and core and web SDK extension. I have the following set up.
I want to fire an event (click event) when the user clicks on an anchor tag link and capture the value/innerText of the link. on debugging in the browser console i see that the value i want is at "event.target.childNodes[0].textContent". I want to capture this value and update an element in the schema.
I created a new rule of eventType "click", had the CSS selector too. I had my conditions set up too, with conditionType as "custom code". in the condition after going through a bunch of If..else statements, i return true . In the action how do i tap into the event and capture the link value to update my schema element? documentation doesn't give any pointers. Do I have to do a websdk send event in action and map my schema element in the data configuration?
i want to capture "event.target.childNodes[0].textContent" and insert into my schema.page.mylink element. can anyone throw some light?