I'm using the utag.link method to fire a button clicked event, the tag gets fired (confirmed using Dev Tools) but my mapped variables are not sent to SiteCatalyst. My Tag mapping looks like this. I need to use SiteCatalyst version H23: port_code --> eVar8 dest_name --> prop5 My method call looks like this: utag.link({ port_code: 'FLL', dest_code: 'BA', link_obj: this, /*this = DOM element*/ link_type: 'o', link_text: 'Track this link' }); If I add to my utag.link call: linkTrackVars: 'eVar18,prop5' it works, but it is just weird that I would have to basically list the mapping already defined in the Tag. What am I missing?
... View more