Hi guys, I am using a utag.view on a Javascript extension to track page views based on clicks on a page that does not reload (so it's dynamic) , and it works fine the first time you click an element. On the other hand, if you do more clicks, you get 2, 4, 8... page views for each click. I assume the thing here is that the utag.link, as it loads all extensions, is adding more listeners to the same elements that cause these multiple page views. Here is an example of my approach: jQuery(document).on("mousedown","#texample", function(){ utag.view({ Page_Name: 'example', }); }); Is there any way of avoiding this to happen? Thanks a lot in advance. Best regards, Martin McNulty
... View more