@Terry_Howard I'm been investigating how the extensions works.
This is selector you're using:
[href*="' + ut.domain + '"],a:not([href^="#"],[href^="http"],[href^="tel:"])
Which Tealium transforms to the following piece of code:
if (1) {
if (typeof utag.runonce[37] == 'undefined') {
utag.runonce[37] = 1;
jQuery(document.body).on('click', '[href*="" + ut.domain + ""],a:not([href^="#"],[href^="http"],[href^="tel:"])', function(e) {
utag.link({
"event_action": 'click link'
})
})
}
As you can see single quotes are converted to double quotes, therefore you can't use variables within your selector. Where you running the same selector previously or using the ut.domain is a new addition?.
If you were previusly using single queotes it looks like something was updated on Tealium Side since the last time you used it in other places.
... View more