October 1, 2014
Tealium Universal Tag (utag.js)
- Added an override (
utag_cfg_ovrd
) flag toutag.js
in order to delay the loading of Tags until the DOM readyState “complete” (AKA “load”) event. This flag provides a delay that may improve page display time speeds by causing all Tags with the Wait = Yes setting to execute even later. Set this flag by entering the following code into a PreLoader-scoped JavaScript Code extension:
var utag_cfg_ovrd = {};
utag_cfg_ovrd.dom_complete = true;
- Fixed a bug for the Internet Explorer browser in which the DOM readyState was reported as “interactive” prematurely. An extra delay for readyState “complete” was added for older of Internet Explorer.