I tried to fire a certain tag only when called when utag.view() is called, given certain parameter values.
I have the following setup:
- Tag "Tealium Custom Container" defined with loading rule: click_event equals mylink
- By default, click_event is not set to value mylink (var utag_data = { event_click="" }
=> When viewing the page, this tag is not fired, as expected
Now I invoke the following JS-call:
utag.view({ click_event:"mylink" });
=> I expected now the Tag to be fired, but it did not fire. I debugged the utag_data, the parameter click_event was set correctly to value mylink.
My questions are:
- Is my setup a correct way to fire specific tags by calling utag.view or utag.link?
- If yes, what went wrong?
- If no, is there another way to only fire specific tags by giving certain criterias?
Thanks in advance!
... View more