- Get link
- X
- Other Apps
- Get link
- X
- Other Apps
For this, first, paste the following code inside your Aura Component:
<a data-category="{!iterator.value1}" data-id="{!iterator.value2}" onclick="{!c.action}"> </a>
Afterward, paste the following code in the JS controller:action: function (component, event, helper) {
let cat = event.target.getAttribute("data-category");
let id = event.target.getAttribute("data-id");
}

Comments
Post a Comment