We are using the UDO, but we want to apply new values on certain events.

Bronze Contributor
Bronze Contributor

Is it possible to send the UDO after the page has rendered??

1 REPLY 1

We are using the UDO, but we want to apply new values on certain events.

Employee Emeritus
Hey Kenneth, Yes this is correct. If you need to make changes to the UDO on click but don't want to change the original data you could do something like this: var udo = utag_data; udo.new_variable = "new value"; udo.updated_variable = "updated value"; utag.view(udo); This will pass everything in the utag_data object but also include the new variable and udpated variable.
Public