I am in a bit of a bind. I have multiple cards.. with several click events possible (7) to be exact inside of each card.
I've added the same class to them all (each click event) with data tags that return different values.
Basically, I want to track all click events (7) at different times and check them as one per card.
If the user does anything within the card at all, count it as one event.. I am basically trying to count the views per card.
Right now I have something like this
$(document).on("click", ".test", function() {
console.log('Testing Stats View capture');
var that = $(this);
var testStats = that.data('capture-stats');
console.log(testStats);
}));