Hey guys, could be a bug in utag.js or could be something i am doing wrong. Calling the following tag: utag.view({ page_name:"product details page", enh_action:"detail", product_action_list:"aaa", product_sku_list:["bbb"], product_names:["ccc"], product_unit_prices:["11.00"], product_categories:["ddd"], product_positions:[1] }); I saw no event been fired off... After investigation further i found the problem in utag.10.js with the .set function throwing an exception because that method is not defined! If anyone can check it out and let me know what the go is would be appreciated. (P.S. the line should be easy to find since there is only one “.set” method call... else if (u.data.enh_action === "detail") { u.addproduct("detail", 1, false); g = {}; u.set(g, "list", u.data.product_action_list); u.all("ec:setAction", "detail"); }
... View more