Hi everyone, I'm trying to fire a tag based on a JavaScript interaction. I tried using utag.view() and utag.link() to get this, but the tag is not being fired. This is what I did: utag.link({}, function(){
console.log('******* TAG LOADED ********');
}, [1754]); In this case, I didn't configured a Load Rule for the Tag, for that reason it was configured "All Pages" by default. So, I was expecting to see the Tag fired twice, but I see it only one. I also tried this: utag.link({'attrib_01': 'oscar'}, function(){
console.log('******* TAG LOADED ********');
}, [1754]); In this case I expected to see it fired only once, but I get none. One more thing, in all cases the callback function is always fired. Best regards,
... View more