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 ?