I have to send a conversion on certain events. These events vary and are mostly clicks on buttons which also do some ajax stuff or similar (no page view). My attempt to do this in Tealium was: Add a "JavaScript Code" extension which adds event listeners for the concerning events and then call utag.link({ "event_name":"google_conversion", "google_conversion_label":"xxx"}); Add a "Google AdWords Conversion" tag with a load rule "js.event_name EQUALS google_conversion" and a mapping from google_conversion_label to google_conversion_label. But this doesn't work, it seems that the conversion tag just reacts on track-events. When I execute utag.view({ "event_name":"google_conversion", "google_conversion_label":"xxx"}); it works. Is there some way to call the conversion on a utag.link()?
... View more