Expand my Community achievements bar.

Join us for an upcoming in-person Adobe Target Skill Builders event ~~> We're hosting these live learning opportunities to equip you with the knowledge and skills to leverage Target successfully. Learn more to see if we'll be coming to a city near you!

How to track several clicks on trackEvent button

Avatar

Level 2

I've got buttons for which i want to track the number of click on it.
[-][+]

$('.button-more').click(function(event){
adobe.target.trackEvent({'mbox':'buttomMore'})
});

By using the code above, i can see each time the same button is clicked, a hit fired on the Chrome Network Tab.

Ex: clicked 3 times
json?mbox=buttomMore&mboxSessi...
json?mbox=buttomMore&mboxSessi...
json?mbox=buttomMore&mboxSessi...

 

My problem is the metric is just counted one time in reporting.

Is it an usual behavior ?
Is there a way to count every clicks of the same button ?

0 Replies