Hi everyone, Is there an easy way to refer to a variable in utag.data in a custom Tealium container? I have the following situation. On the site, I have variables defined in utag.data - one of which is a language, say: locale. var utag_data = {
"locale" : "EN"
} I'm trying to access this variable in Tealium by using utag.data.locale, but this seems not to be the right way. (Note that I'm used to working in Google Tag Manager, where you can normally access these variables by using window.dataLayer[0].yourVariable) What would be the best way to access the value of the variables defined in utag_data? I read on the community forum that there's a variable 'b' that is a copy of all the variables defined in utag and the JS variables on the site. Could I alternatively use that?
... View more